Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $cgi = CGI->new();
    my $username = $cgi->remote_user();
    
  2. or download this
    sub remote_user {
        return $ENV{'REMOTE_USER'};
    }