When I try to use curl it doesn't work, although phpinfo shows that it is installed.
The same script work on my test home machine.
here is a simple script:
<?php
function getPage($url,$post='')
{
$ch = curl_init();
//echo $url;
curl_setopt($ch, CURLOPT_URL, $url)...