I'm about to give up.. thanks God.. it's solved... :) <?php
$userAgent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)';
// Create a curl handle to a non-existing location
$ch = curl_init('http://www.example.com/wb/wxfcst.html');
// add useragent
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
// Execute
curl_exec($ch);
// Check if any error occured
if(!curl_errno($ch))
{
$info = curl_getinfo($ch);
echo '<hr>Took ' . $info['total_time'] . ' seconds to send a request to ' . $info['url'];
}
// Close handle
curl_close($ch);
?>
[edited by: coopster at 8:33 pm (utc) on Feb. 4, 2009]
[edit reason] please use example.com in code [/edit]