1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| <div id="loaddiv"><?php
// Url du xml
$xml = @ simplexml_load_file('http://api.radionomy.com/currentsong.cfm?radiouid=da858a58-ea9e-4c36-a22e-f5f028256fc1&apikey=da858a58-ea9e-4c36-a22e-f5f028256fc1&type=xml');
foreach ($xml as $track)
{
$artiste = $track-> artists;
$titre = $track->title;
}
$artiste = ucwords($artiste);
$titre = ucwords($titre);
if ($artiste == "Radio-Tchat-Fusion" ) // Si c'est un jingle, on affiche le message "pas de vote"
{
echo "<b>Radio-Tchat-Fusion revient dans quelques instants ...";
}
else // Sinon on affiche le titrage
{
echo "<b>Artiste : $artiste</b><br>Titre : $titre";
}
?></div> |
Partager