Is there any way, perhaps another function, to change the HTTP headers that PHP sends to a website.
Example
here's a file on my server.
mypage.php
<?
phpinfo();
?>
here is my request.
$FID = fopen("http://myserver/mypage.php","r");
fpassthru($FID);
When I look at at HTTP_USER_AGENT it is PHP/4.0.6
Is there a way to send the User agent headers for say IE 5.5,Netscape,Mozilla,etc.
Thanks in advance,
Rodney