Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
The HTTP_USER_AGENT is displayed but not the REFERER. Thanks in advance.#!/usr/bin/perl print ("Content-type: text/html\n\n"); print "<HTML><HEAD><TITLE>Environment Variables</TITLE></HEAD><BODY>"; print "<p><b>$ENV{'HTTP_USER_AGENT'} $ENV{'HTTP_REFERER'}</b></p>"; print "</BODY></HTML>"; open(FILE,">>testdata"); print FILE "\nHere"; close (FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP_REFERER
by merlyn (Sage) on Aug 15, 2000 at 23:56 UTC | |
by Anonymous Monk on Aug 16, 2000 at 09:52 UTC | |
|
Re: HTTP_REFERER
by turnstep (Parson) on Aug 15, 2000 at 23:27 UTC | |
|
RE: HTTP_REFERER
by steveAZ98 (Monk) on Aug 15, 2000 at 23:55 UTC |