Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/10/2010, 20:47
Grox
 
Fecha de Ingreso: mayo-2008
Mensajes: 82
Antigüedad: 16 años, 6 meses
Puntos: 3
Respuesta: file_get_contents con cookie

Cita:
Iniciado por abimaelrc Ver Mensaje
Se puede lograr con file_get_contents. Pasa por el área de aportes para que veas un tema que te puede ayudar en lo que deseas hacer.
Encontre lo siguiente:

Código PHP:
<?php
$options 
= array('http' =>
    array(
        
'method'  => 'GET',
        
'header'  => 'Content-type: text/plain;charset=UTF-8\r\n'.
        
'Referer: http://www.forosdelweb.com\r\n'.
        
'User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; es-ES; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6\r\n'.
        
'Cookie: nombre_cookie=contenido_cookie;;\r\n'
    
)
);
$context stream_context_create($options);
$page file_get_contents('http://www.example.com'false$context);
echo 
$page;
?>

Pero no me funciona...