Page is a not externally linkable
- Code, Content, and Presentation
-- PHP Server Side Scripting
---- CURL : [error] Not Acceptable


camilord - 7:23 pm on Feb 4, 2009 (gmt 0)


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]


Thread source:: http://www.webmasterworld.com/php/3842352.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com