Tengo creado un blog con blogger para un juego y en esa pagina he hecho la prueba de añadir un reproductor de radio.
Código:
<iframe src="http://player.streamtheworld.com/liveplayer.php?callsign=MAXIMAFM" width="307" height="163" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="margin: 0; padding: 0;" allowtransparency="true"></iframe>
Hasta ahi bien, luego quise poner otras radios intercaladas, algo asi como un solo reproductor y cuando seleccionabas otra radio cambiaba y bueno no iba mal
Código:
<?php
/*=========================================================
|| # Habbim Radio
| =========================================================*/
$do = $_GET["do"];
if($do == MAXFM)
{
print '<iframe src="http://player.streamtheworld.com/liveplayer.php?callsign=MAXIMAFM" width="307" height="163" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="margin: 0; padding: 0;" allowtransparency="true"></iframe><br />';
}
if($do == LOS40)
{
print '<iframe src="http://player.streamtheworld.com/liveplayer.php?callsign=LOS40" width="307" height="163" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="margin: 0; padding: 0;" allowtransparency="true"></iframe><br />';
}
if($do == EURO)
{
print '<embed height="67" width="100%" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="mms://europafmlivewm.fplive.net/europafmwmlive-live/europafm" name="MediaPlayer1" autostart="1" sendopenstatechangeevents="true" showstatusbar="true" showcontrols="true" id="PLAYER" type="application/x-mplayer2"><br />';
}
?>
¿Que radio quieres?
<br />
<a href="http://www.kissfm.es/files/radio/radio.html" onclick="window.open(this.href,'KissFm','menubar=no,width=752,height=197,toolbar=no,location=no,resizable=no,scrollbars=no,status=no,top=0,left=0'); return false;" >Kiss FM</A></b></a>
<br />
<A HREF="?do=EURO">Europa FM</A></b></a>
<br />
<A HREF="?do=LOS40">Los 40 Principales</A></b></a>
<br />
<A HREF="?do=MAXFM">Maxima FM</A></b></a>
Pero unas radios dejaron de funcionar y la estructura en si no iba bien despues de la actualizacion de blogger, asi que ahora me gustaria tener como antes, dos radios, Maxima FM y Los 40 a la vez, que con un nombre alternen entre ellas segun el gusto de los visitantes
aqui os dejo los dos codigos
Código:
<iframe src="http://player.streamtheworld.com/liveplayer.php?callsign=LOS40" width="307" height="163" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="margin: 0; padding: 0;" allowtransparency="true"></iframe>
<iframe src="http://player.streamtheworld.com/liveplayer.php?callsign=MAXIMAFM" width="307" height="163" scrolling="no" frameborder="0" marginheight="0" marginwidth="0" style="margin: 0; padding: 0;" allowtransparency="true"></iframe>
Podria alguien ayudarme a que alternen entre ellos con algun boton o aunque sea que una de las radios empiece en pausa??
Gracias de antemano