Cita:
Iniciado por metacumbiero <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>