Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/11/2007, 22:42
Lanselot
 
Fecha de Ingreso: noviembre-2007
Mensajes: 157
Antigüedad: 16 años, 5 meses
Puntos: 3
Re: Feeds en servidores que no permiten fopen

Qué tal con CURL?

Código PHP:
$url 'http://www.midominio.com/ruta/fichero.html'//Aquí la URL que se quiera, claro.
$ch curl_init($url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
$contenido curl_exec($ch);