Home


eBay System Announcements


function ncfile_get_contents($url) { $ch = curl_init(); $timeout = 10; // set to zero for no timeout curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); // echo $file_contents; return ($file_contents); } echo ncfile_get_contents("http://www2.ebay.com/aw/announce.xml"); ?>

Home