Script pour affichage de nom d'émission radio

Résolu/Fermé
amine_tn Messages postés 16 Date d'inscription jeudi 4 février 2010 Statut Membre Dernière intervention 18 février 2012 - 29 janv. 2012 à 14:19
 puylouradio.fr - 30 mai 2014 à 19:44
Bonjour,

Je cherche un script pour afficher le nom d'une émission radio en cours ainsi que son intervalle de temps et son image.

Exemple: http://img11.hostingpics.net/pics/974871radio.png

Cordialement.

5 réponses

amine_tn Messages postés 16 Date d'inscription jeudi 4 février 2010 Statut Membre Dernière intervention 18 février 2012 1
30 janv. 2012 à 09:26
Re,

J'ai trouvé mon code <3

Je le partage avec vous :)

<?php

$h = date('G'); //set variable $h to the hour of the day
$d = date('w'); //set variable $d to the day of the week.
$year = date('Y'); //set variable $year to the current year
//G is the date key for hours in 24 format (not 12), with no leading 0s, like 02.
// Adjust 2 hour offset for MST below.
$h = $h+1;

switch ($d) { 
    case 0: //sunday 
          if ($h >= 6 && $h < 9)  $img = 'http://static.php.net/www.php.net/images/php.gif'; 
          if ($h >= 9 && $h < 12) $img = 'http://static.php.net/www.php.net/images/php.gif'; 
		  if ($h >= 12 && $h < 15)  $img = 'http://static.php.net/www.php.net/images/php.gif'; 
          if ($h >= 15 && $h < 18) $img = 'http://static.php.net/www.php.net/images/php.gif'; 
		  if ($h >= 18 && $h < 21) $img = 'http://static.php.net/www.php.net/images/php.gif'; 
          if ($h >= 21 && $h < 24) $img = 'http://www.scriptsearch.com/img/logo.gif'; 
        break; 
    case 1: // Monday 
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen;
        break; 
    case 2:  //Tuesday
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen;
        break; 
	case 3: // Wednesday 
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen;
        break; 
	case 4: // Thursday
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen; 
        break; 
	case 5: // Friday
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen;
        break; 
	case 6: // Saturday
          if ($h >= 6 && $h < 9)  $dj = $JacodeWet; 
          if ($h >= 9 && $h < 12) $dj = $SusanBooysen; 
		  if ($h >= 12 && $h < 15)  $dj = $JacodeWet; 
          if ($h >= 15 && $h < 18) $dj = $SusanBooysen;
		  if ($h >= 18 && $h < 21)  $dj = $JacodeWet; 
          if ($h >= 21 && $h < 24) $dj = $SusanBooysen;
        break; 
    default: 
        // no weekday found, must be a bogus call 
} 
?>
1
puylouradio.fr
30 mai 2014 à 19:44
Ton code ne fonctionne pas
0