Hi
I am trying to access my pop3 mailbox on my isp, I was trying to use the commands:
$server = "pop3.lineone.net";
$imap_open = "{" . $server . ":110/pop3}INBOX"
$mbox = imap_open($imap_open, $username, $password);
But all I get is the following error message:
Fatal error: Call to undefined function: imap_open() in email.php on line 25
I am running this on a my web-hosts server which I believe is running the following:
PHP Version 4.2.3 on Linux (build Nov 29 2002 00:53:22)
What am I doing wrong?
Thanks
Martin