- Joined
- Jun 22, 2009
- Messages
- 107
- Reaction score
- 22
Hi all! I have a problem with my radio status script. My radio is online but script saing offline :S (shoutcast & listen2myradio)
I use following script:
status.php
and radiocheck.php
I use following script:
status.php
PHP:
<?php
if(file_get_contents('radiocheck.php') == 'Online') {
echo '<img src="url/Online.JPG" alt="Radio station online" />';
}else{
echo '<img src="url/Offline.JPG" alt="Radio station offline" />';
}
?>
and radiocheck.php
PHP:
<?php
error_reporting(0);
if(fsockopen('IP',6615,$errno, $errstr, 5)) {
echo 'Online';
}else{
echo 'Offline';
}