Ver Mensaje Individual
  #57 (permalink)  
Antiguo 29/07/2003, 17:18
Avatar de Manoloweb
Manoloweb
 
Fecha de Ingreso: enero-2002
Ubicación: Monterrey
Mensajes: 2.454
Antigüedad: 22 años, 3 meses
Puntos: 5
Bueno, esa no es la forma de mostrarlo...

Si insistes en mostrarlo con frames, deberas hacer OTRA pagina PHP llamada juego.php

En verjuego.php cambialo así...

Código PHP:
<?
$juego
=$_GET['ID'];
echo <<< HTML
<html>
  <head>
    <title>juego $nombre</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  </head>

  <frameset rows="20,*" frameborder="NO" border="0" framespacing="0">
    <frame name="topFrame" scrolling="NO" noresize src="frame.html" >
    <frame name="mainFrame" src="juego.php?juego=$juego">
  </frameset>

   <noframes>
    <body>
    Tu navegador no soporta frames. no se puede visualizar el enlace.
   </body>
  </noframes>
</html>
HTML;
?>
__________________
Manoloweb