Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/06/2004, 16:01
Dahn
 
Fecha de Ingreso: junio-2004
Ubicación: Demasiado lejos
Mensajes: 52
Antigüedad: 19 años, 10 meses
Puntos: 0
Creo que este código es justo lo que buscas:

estado.php
--------------------
Código PHP:
<?
$online 
"online.gif";
$offline "offline.gif";

$enlinea = @fopen("$enlace""r");
             if (!
$enlinea){header("Location: $offline");}
             else {
header("Location: $online");}
fclose($enlinea);
?>
Luego donde quieras mostrar la imagen que indique si esta online o no la radio pon esto:
Código:
<img src="estado.php?enlace=listen.pls">
Ya sabes, cambia las rutas de los archivos para que todo funcione correctamente.

Saludos
__________________
I'll be here..., Why...?, I'll be 'waiting'...here..., For what?, I'll be waiting...for you...so..., If you come here..., You'll find me, I promise.

Última edición por Dahn; 22/06/2004 a las 16:06