Ver Mensaje Individual
  #12 (permalink)  
Antiguo 03/03/2011, 11:52
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 1 mes
Puntos: 1146
Respuesta: Ayuda con Iframe idea rara no se si es posible.

Cita:
Iniciado por metacumbiero Ver Mensaje
<iframe src="<?php echo $_GET["megaupload"]; width="955" height="511" ?>"></iframe> ESTO ES LO QEU TENGO EN ESA LINEA..
estas incluyendo el width y el height junto con el src
tu tienes
<iframe src="<?php echo $_GET["megaupload"]; width="955" height="511" ?>"></iframe>
debe de ser
<iframe src="<?php echo $_GET["megaupload"]; ?>" width="955" height="511"></iframe>