Hi there, im using this php script and i want to add minutes on the script but i have a problem when the radio programs last more than an hour the script just doesnt show anything after that minute comes.
can you guys help me please? thanks in advance!Code:<?php $hora = date('G'); // Horas de 0 a 23 $dia = date('w'); // Dias 0 (Domingo) a 6 (Sabado) $minuto = date('i'); // Minutos de 00 a 59 $hora = $hora+1; $minuto = $minuto+21; // MARTES if ($dia == 2 && $hora >= 0 && $hora < 4) $img = 'images/yaco.gif'; else if ($dia == 2 && $hora >= 4 && $hora < 8) $img = 'images/nancy.gif'; else if ($dia == 2 && $hora >= 8 && $hora < 12) $img = 'images/lucas.gif'; else if ($dia == 2 && $hora >= 12 && $hora < 13) $img = 'images/juan.gif'; else if ($dia == 2 && $hora >= 13 && $hora < 15) $img = 'images/henoch.gif'; else if ($dia == 2 && $hora >= 15 && $hora < 17) $img = 'images/gustavo.gif'; else if ($dia == 2 && $hora >= 17 && $hora <= 21 && $minuto <= 44) $img = 'images/edmundo.gif'; ?> <html> <head></head> <body> Estas escuchando a... <br><br> <img src="<?php echo $img; ?>"> </body> </html>



Reply With Quote




Bookmarks