I have to run a get request from a PHP script, but I'm in a fairly limited environment (tight firewalls, can't modify the PHP install, etc...).
fsockopen() returns an error and http_get() seems to not be installed. The only other way I know of is to call file_get_contents(), which works OK, except for the fact that I need to set the referrer header in the request (which I don't think you can do with file_get_contents().
Does anyone know any other way to run a GET request via php?
Thanks!
edit: also, CURL is unavailable. :-(