I have shoutcast administrator and i need to read xml from that it looks like this

http://SHOUTCAST-IP:PORT/admin.cgi

And i need to login and get the XML Data from http://SHOUTCAST-IP:PORT/admin.cgi?mode=viewxml and do it with php, i have made this script

$fp = fsockopen($server, $port, $errno, $errstr, 30);
      fputs($fp, "GET /admin.cgi?pass=".$password."&mode=viewxml HTTP/1.0\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)\r\n\r\n"); //
      while (!feof($fp)) {
          $content = fgets($fp);
}

But it doesn't work, it says Unauthorised. How can i fix it ?

link|improve this question
1  
You're mangling your headers a bit. Why don't you use cURL instead? Don't re-invent the wheel... no need to use sockets for this directly. – Brad Jan 11 at 14:39
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.