Help for this page

Select Code to Download


  1. or download this
    if (defined $ENV{'QUERY_STRING'}) {
        # assign to variable
        # check for login parameter
    }
    
  2. or download this
    use CGI;
    my $q = CGI->new();
    
    ...
    if ($login) {
        # do whatever
    }