Help for this page

Select Code to Download


  1. or download this
           CREATING A PASSWORD FIELD
    
    ...
              print $query->password_field('secret','starting value',50,80
    +);
    
           password_field() is identical to textfield(), except that its c
    +ontents will be starred out on the web page.
    
  2. or download this
                       system "stty -echo";
                       print "Password: ";
                       chomp($word = <STDIN>);
                       print "\n";
                       system "stty echo";