I have this code
function bacaHTML($url,$ref_url){
// inisialisasi CURL
$data = curl_init();
// setting CURL
curl_setopt($data, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($data, CURLOPT_URL, $url);
curl_setopt($data, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($data, CURLOPT_REFERER, $ref_url);
// menjalankan CURL untuk membaca isi file
$hasil = curl_exec($data);
curl_close($data);
return $hasil; }
and now i want to curl this xml http://secure.musiklegal.com/?action=catalogue&method=generate&api_key=145-190431119&limit=10
so like this
echo bacaHTML('http://secure.musiklegal.com/?action=catalogue&method=generate&api_key=145-190431119&limit=10','http://secure.musiklegal.com/');
but does not show anything on screen (blank or just white screen). But when i try to type the link on new tab browser, it's appear..
thanks before
http://secure.musiklegal.com/. Make sure that the site is up and running, the version you can see in your browser may be cached. – DaveRandom Jan 12 '12 at 11:41