how can i add a background to this script please help.
[php]
<?php $sc_url_ip = "173.212.236.164"; $sc_url_port = "8002"; function getNowPlaying($sc_url_ip,$sc_url_port) { $open = fsockopen($sc_url_ip,$sc_url_port,$errno,$errstr,'.5'); if ($open) { fputs($open,"GET /7.html HTTP/1.1\nUser-Agent:Mozilla\n\n"); stream_set_timeout($open,'1'); $read = fread($open,200); $text = explode(",",$read); if($text[6] == '' || $text[6] == ''){ $msg = ' live stream '; } else { $msg = $text[6]; } $text = $msg; } else { return false; } fclose($open); return $text; } $csong = getNowPlaying($sc_url_ip,$sc_url_port); print ''.$csong.''; print ""; if ($csong == "Song Title Here") print "True"; ?> [/php]