shyam - 2009-04-05 10:16:03 -
In reply to message 2 from Manuel Lemos
You're right, I tried the script browse_mailbox.php and did not get that error. So in an attempt to trap script errors I added the following lines to browse_mailbox right after the line "require("pop3.php")"
function customError($errno, $errstr)
{
echo "<b>Error:</b> [$errno] $errstr<br />";
}
set_error_handler("customError");
This is the message I got. I'm running php 5.1.6
--------------------------
<b>Error:</b> [2048] Non-static method pop3_class::SetConnection() should not be called statically, assuming $this from incompatible context<br /><br>
--------------------------