IMAP script Problems: won't load in browser
Posted: Sat Dec 11, 2004 8:03 pm
I am trying to write a script for basic e-mail functions... reading, writing, etc.
I have found that when I write even an extremely simple script using imap function such as...
the script will not load in my browser. IE for OS X gives an error such as, "The attempt to load 'Accessing URL: http://www.retrospection.net/phpstuff/mail' failed."
I have tried to figure this out, but I am not making in progress. It baffles me that there are no errors such as parse error given by php, the browser just will not load it at all! Any suggestions?
I have found that when I write even an extremely simple script using imap function such as...
Code: Select all
<?php
$mbox = imap_open("{mail.retrospection.net:110}", "myusername", "mypassword");
imap_close($mbox);
?>I have tried to figure this out, but I am not making in progress. It baffles me that there are no errors such as parse error given by php, the browser just will not load it at all! Any suggestions?