
November 23rd, 2001, 05:54 PM
|
|
Unjiggy Member
|
|
Join Date: Oct 2001
Location: SOCAL
Posts: 4
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Server error when php mail
PHP Code:
for($i=0;$i<$count;$i++) //while initials are present
{
$subject = "Balh";
$from ="From: [email]ian@unjiggy.net[/email]";
$getemail = mysql_query("select email from users where initials = '$artist[$i]'");
list($theemail) = mysql_fetch_row($getemail);
mail($theemail,$subject,$message,$from);
}
and i get the following error
"Warning: Server Error in c:\program files\nusphere\apache\htdocs\blah.php on line 36"
which is the mail line.
it was working at one point, i am using nusphere, and i tryed localhost for the smtp server in php.ini, but still no luck.
|