Ok, I have researched and found a simple bit o' code to include in my personal start page, but it does not load the complete web page. I want a simple bit of PHP code to check my POP3 account and inform me if I have new mail.
Here is the code I found...
//////////////////////////////////////////////////////////////////////////////
$mbox = imap_open ("{SERVERURL:110/pop3}INBOX", "USERNAME", "PASSWORD") || die ("can't connect: " . imap_last_error());
$check = imap_check ($mbox);
if($check) {print "Messages:" . $check->Nmsgs;}
else {print "imap_check() failed: " . imap_last_error();}
imap_close ($mbox);
//////////////////////////////////////////////////////////////////////////////
I of course changed the urlname, username, and pw.... It does not even return an error, it just loads part of the web page and just sits there, acting like it is loading something.... It actually locks up IE... but other browsers it just sits there!?!?
Are there any suggestions, or obvious mistakes? Is this a server issue, or how I am sending it to the server? Any help would greatly be appreciative!
Thanks!
The Sound Guy