Anders Norrbring wrote:
> Thanks Per,
> I think so too, I glanced it, but unfortunately I have no idea
> whatsoever about *how* to do it... So, if anyone have suggestions, or
> concrete examples, please do share!
>
> Anders.
I did play around with it once, but I don't have any actual code to
share. Try this though:
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n".
"Cookie: foo=bar\r\n"
)
);
$context = stream_context_create($opts);
$result=file_get_contents( <url>, FILE_TEXT, $context );
/Per Jessen, Zürich
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php