< ? php
header('Content-Type: text/xml');
//header('Content-Type: text/html');
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, 'http://feeds.feedburner.com/jquery/');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
// display file
echo $file_contents;
?>
Source: http://groups.google.com/group/jquery-en/browse_thread/thread/c11d7bc6a23bf305
No comments:
Post a Comment