i had this problem too and i tryed, on the server my not is configured imap on mailserver
$stream = imap_open("{localhost/pop3:110}INBOX","username", "password");
i need to split imap_headers($stream);
how can i do this ?
$headers = imap_headers ($stream);
if ($headers == false) { echo "Call failed \n"; } else { while (list ($key,$val) = each ($headers)) { echo "<br>".$val." \n"; } } but i need to split $val like split but it's not working 🙁 help me if u can 🙂