Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/03/2011, 11:16
jremon
 
Fecha de Ingreso: septiembre-2009
Mensajes: 8
Antigüedad: 14 años, 8 meses
Puntos: 0
Respuesta: Problemas con PHP y MYSQL,...

Genial! Lo consegui asi:
<?

include("conn.phtml");
$link=Conectarse();


//Ejecutamos la sentencia SQL
$result=mysql_query("select * from slservers where name = 'ServidorBetaZhuang'");
while ($row=mysql_fetch_array($result))
{
$url=$row['url'];
}
$includeFile = file_get_contents($url);
echo '<script>';
echo $includeFile;
echo '</script>';

?>


Muchas gracias bUllan, me ayudaste mucho, y luego lo completé con algo de búsqueda!