doni49 Posted November 12, 2007 Author Share Posted November 12, 2007 I tried to update the original screen shot but couldn't find way to upload a new image when modifying an existing message. So here's a new screen capture (from outlook express because I don't have access to TBird). [attachment deleted by admin] Quote Link to comment Share on other sites More sharing options...
doni49 Posted November 13, 2007 Author Share Posted November 13, 2007 Anyone have any more thoughts? Quote Link to comment Share on other sites More sharing options...
doni49 Posted November 13, 2007 Author Share Posted November 13, 2007 This is getting even STRANGER. The bold portions below are just the filenames of the code that follows. Loading p.php in my browser using this code produces 1 email message and the date is displayed once in my browser: p.php <?php include "/home/username/popmail.php"; ?> /home/username/popmail.php <?php $d = "EMH2 - "; $d .= date("n/j/Y - g:i:s a"); $headers = "FROM: myemail@mydomain.com\r\n"; mail("myemail@mydomain.com", $d, $d, $headers); print "Date: " .$d . "\n"; ?> But if I load this p.php in my browser using THIS code, I get 80 something messages and the date is STILL displayed once in my browser: p.php <?php include "/home/username/EmailHandlers/popmail.php"; ?> /home/username/EmailHandlers/popmail.php <?php $d = "EMH2 - "; $d .= date("n/j/Y - g:i:s a"); $headers = "FROM: myemail@mydomain.com\r\n"; mail("myemail@mydomain.com", $d, $d, $headers); print "Date: " .$d . "\n"; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.