imap_open() shows page cannot dispalyed
I cannot use imap_open () to connect mail server. Please help me.
With this PHP code I cannot show an email overview and display emails from POP3 accounts.
$conn = imap_open ("{mail. myserver.com:110/pop3/notls}INBOX", “myusername”, “mypassword”) or die ("Connection fail" .imap_last_error ());
if ($conn)
{
echo "Success";
}
else
{
echo "Fail ";
}
If i gave wrong username & password, the result will be “connection fail and check for account “.
When I was giving correct details I get error
“page cannot be displayed with Cannot find server or DNS Error Internet Explorer “
vibin
|