I try to use imap_open() function, but I always get message:
"Fatal error: Call to undefined function: imap_open() in....".
I use PHP4 and I tried to escape parenthesis/es in these ways:
$con=imap_open("{$server:$port}$mailbox", $user, $pass);
$con=imap_open("{$server:$port}$mailbox", $user, $pass);
...but it is not working anyway.
Any idea ?
twom