Help for this page

Select Code to Download


  1. or download this
    <input type="text" id="password" />
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    my $query = new CGI;
    
    my @names = $query->param();
    
  3. or download this
    my $pass = $query->param("password");
    
  4. or download this
    <input type="text" id="password" name="password" />