Greetings list members.  I've written the code below as part of an
automatic email script.  The problem with this is it seems to run in to
an infinite loop.  The for loop seems to get completely ignored by
emails get sent constantly.  I deleted the script after receiving 2500
emails ! :'( 

Can anyone point out what the problem with this is?


while($tmp <= $NowUnix)
{

for($i=0; $i<=2; $i++)
        {
        $sendto = "[EMAIL PROTECTED]";
        $subject = "Test Automatic Email";
        $message = "If you get this then age3.php works"
        $message = "If you get this then age3.php works"
        $message = "If you get this then age3.php works";

        mail($sendto, $subject, $message);
        }
}


Cheers,

Graeme :)


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to