Hi There,
I am trying to use imap_open()with PHP4 but having great problems. According to the manual I should be able to write:
$stream = imap_open("{imapmailserver:143}", "user", "userpassword");
but this does not work. I keep being told:
Parse error: parse error, expecting `'}'' in filename
It was suggested to me that I use
$stream = imap_open("{{imapmailserver}:{143}}", "user", "userpassword");
but this doesn't work either. Any ideas?