Could any body tell me How to Enable curl in PHP
Thanks in Advance
Fero
Could any body tell me How to Enable curl in PHP
Thanks in Advance
Fero
You can check php_info() (create a script containing and browse to it) This will tell you if you really do have it enabled, if not read here
Not recommended for the faint hearted windows developer.
on debian with apache2:
apt-get install php5-curl
/etc/init.d/apache2 restart
(php4-curl if it's php4)
Since you're using XAMPP, uncomment the line
;extension=php_curl.dll
in xampp\apache\bin\php.ini, and then restart the Apache service.
Actually i did it by un commenting the extension=php_curl.dllin the xampp\apache\bin\php.ini file.. Thanks for all who supports this Question.