I can run this line of code in php3
imap_reopen($mbox, "{$server:$port}$mailbox");
but in php4, i got
Parse error: parse error, expecting `'}'' in test.php3
If I change it to
imap_reopen($mbox, "{mail.mymail.com:$port}$mailbox");
It runs without error. I just want to know what is the problem, thanks.