Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I cannot load a page from 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
@daveRandom : please try this secure.musiklegal.com/… – wpro Jan 19 '12 at 9:41

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.