Possible Duplicate:
how to enable php curl for use in php cli
I am running a file which containing curl function. When i run in command prompt i am getting below error.
test.php
<?php
echo "Hai";
$url="http://www.google.com/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$str = curl_exec($ch);
curl_close($ch);
echo $str;
?>
Command : C:\>test>php test.php
Fatal error: Call to undefined function curl_init()
When i run in web browser its running fine.
Information i got
<?php
dl("php_curl.dll");
...
?>
Not solved still
php -i. – Michael Berkowski Nov 26 '12 at 13:38