| $url = "http://recursos.promocionesweb.com/mb/listado_salas.php?id=8434&noiframe=si&login=".$_GET['login']; $respuesta = getLightboxPage($url); echo $respuesta; function getLightboxPage ($config){ $fichero = fopen($config, "r"); $respuesta = ""; if (!$fichero){ return "ERROR"; } while (!feof($fichero)){ $linea = fgets($fichero,1024); $respuesta = $respuesta . $linea; } fclose ($fichero); return $respuesta; } ?> |