![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
01/05/2009, 12:18
|
![Avatar de FaNaTyCk](http://static.forosdelweb.com/customavatars/avatar209113_1.gif) | | | Fecha de Ingreso: enero-2008
Mensajes: 54
Antigüedad: 17 años, 1 mes Puntos: 2 | |
Respuesta: [AYUDA] Problemas con frameset y música en php Actualice el index.php a:
<html>
<head>
<title>nombre del sitio</title>
</head>
<FRAMESET ROWS="0,*" frameborder="no" border="0" noresize="noresize">
<FRAME SRC="about:blank" NAME="hidden">
<FRAME SRC="/main/?" NAME="MainFrame">
</FRAMESET><noframes></noframes>
</html>
Actualice el musica.php a:
<html>
<head>
<title>nombre del sitio</title>
<script>
if(top==self) top.location="./../inicio.html"
</script>
</head>
<table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="col"><embed src="ht tp://localhost/main/media/music.swf" menu="false" quality="high" width="100" height="100" name="index" type="application/x-shockwave-flash" pluginspage="ht tp://w ww.macromedia.com/go/getflashplayer" flashvars="playList=ht tp://localhost/main/sound/music.xml&ShowEQ=1&initVol=100" wmode="transparent"></embed></th>
</tr>
</table>
</body>
</html>
Y probé algo que vi en la web de telefónica, pero sigue sin funcionar:
<html>
<head>
<title>nombre del sitio</title>
</head>
<FRAMESET ROWS="0,*" frameborder="no" border="0" noresize="noresize">
<FRAME SRC="about:blank" NAME="hidden">
<FRAME SRC="/main/?" NAME="MainFrame">
</FRAMESET><noframes><body><?php include ('main/musica.php');?></body></noframes>
</html>
También probé sacar el include php y agregar directamente el contenido del musica.php, tampoco funciono. Pobre ambos métodos fuera de la etiqueta noframes y tampoco hubo resultados positivos.
Ayuda por favor!. |