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
|