http://qs321.pair.com?node_id=106392


in reply to GET and POST HTTP_REFERER protected form?

If you're using LWP::UserAgent and HTTP::Request, you can specify the HTTP_REFERER using HTTP::Request's header() method:
# set up the user agent... $req = HTTP::Request->new(GET => 'http://www.example.com'); $req->header('Referer' => 'http://www.yahoo.com'); # make the request and so on...