Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/08/2008, 19:36
Thaorius
 
Fecha de Ingreso: julio-2008
Mensajes: 83
Antigüedad: 15 años, 9 meses
Puntos: 6
Respuesta: Notice: Undefined index: host

Código PHP:
$URL_FINAL parse_url(http://www.web.com/algo.html); 
Te faltaron las comillas en la url:
Código PHP:
$URL_FINAL parse_url("http://www.web.com/algo.html"); 
Saludos.