cormanaz has asked for the wisdom of the Perl Monks concerning the following question:
I get the other two values but remote_user is null. Anyone know what I'm doing wrong?use CGI; my $query = new CGI; my $ref = $query->referer; my $user = $query->remote_user; my $addr = $query->remote_addr; print $query->header(),$query->start_html(-title=>'Test'); print "referrer = $ref<br>remote user = $user<br>remote addr = $addr"; print $query->end_html();
tia.....Steve
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI getting htaccess userid
by ikegami (Patriarch) on Jan 11, 2006 at 19:36 UTC | |
by Happy-the-monk (Canon) on Jan 11, 2006 at 19:40 UTC | |
by ikegami (Patriarch) on Jan 11, 2006 at 19:44 UTC | |
|
Re: CGI getting htaccess userid
by merlyn (Sage) on Jan 11, 2006 at 19:51 UTC | |
|
Re: CGI getting htaccess userid
by brian_d_foy (Abbot) on Jan 11, 2006 at 19:58 UTC |