- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
<?php
$open = fsockopen("xxx.xxx.xxx.xxx","8000");
if ($open) {
fputs($open,"GET /radio_record128 HTTP/1.1\nUser-Agent:Mozilla\n\n");
$read = fread($open,1000);
$text = explode(",",$read);
$text = $text[6];
} else { $text="Connection Refused!"; }
?>
<?php echo "Song:".$text;?>