Reputation:
I'm creating a script to connect to a mailbox using IMAP everytime I run it I get this error...
Fatal error: Call to undefined function imap_open() in C:\xampp\htdocs\CheckContents\index.php on line 11
does anyone know why??
Upvotes: 1
Views: 5167
Reputation: 4860
Add imap extension to your php setup by adding following to your php.ini
extension=php_imap.dll
Upvotes: 2