Search found 401 matches
- Wed May 12, 2004 8:35 am
- Forum: PHP - Code
- Topic: include function
- Replies: 7
- Views: 583
- Wed May 12, 2004 8:33 am
- Forum: PHP - Code
- Topic: how to create a mysql query in php
- Replies: 3
- Views: 256
- Wed May 12, 2004 8:29 am
- Forum: PHP - Code
- Topic: how to list all with this code.thanks
- Replies: 4
- Views: 408
- Wed May 12, 2004 8:23 am
- Forum: PHP - Code
- Topic: Problem with obtaining data *SOLVED*
- Replies: 6
- Views: 565
- Wed May 12, 2004 8:19 am
- Forum: PHP - Code
- Topic: list to array
- Replies: 2
- Views: 334
Hi,
Code: Select all
<?php
$numbers = "1,2,3,4,5,6";
$number_array = explode(',', $numbers);
foreach ($number_array as $number)
{
echo number_format($number, 2, '.', '') . "<br>";
}
?>- Wed May 12, 2004 8:13 am
- Forum: PHP - Code
- Topic: Wont send right
- Replies: 6
- Views: 547
- Wed May 12, 2004 6:38 am
- Forum: PHP - Code
- Topic: Uploading a single file to multiple servers?
- Replies: 14
- Views: 736
- Wed May 12, 2004 6:36 am
- Forum: PHP - Code
- Topic: need help with upload image and getting image name to databa
- Replies: 32
- Views: 1707
- Tue May 11, 2004 7:41 pm
- Forum: PHP - Code
- Topic: need help with upload image and getting image name to databa
- Replies: 32
- Views: 1707
- Tue May 11, 2004 7:35 pm
- Forum: PHP - Code
- Topic: Wont send right
- Replies: 6
- Views: 547
FROM: should be lower-case, like:
"From: whoever@wherever.com" and it does make a difference. Also check a phpinfo() dump to see if you can actually send mail or not.
Cheers,
Rich
"From: whoever@wherever.com" and it does make a difference. Also check a phpinfo() dump to see if you can actually send mail or not.
Cheers,
Rich
- Tue May 11, 2004 7:32 pm
- Forum: PHP - Code
- Topic: Uploading a single file to multiple servers?
- Replies: 14
- Views: 736
You could approach this from the other angle - i.e. your client uploads the file once to one server which then in turn kicks off scripts on the other servers and they grab the file from that initial server - pass them the filename/id or similar and they can retrieve it via a standard fopen call as l...