Help for this page

Select Code to Download


  1. or download this
    if ($name = "firstname"){
    
  2. or download this
    if ($name eq "firstname"){
    
  3. or download this
    use CGI;
    use strict;
    ...
    if ($FORM{firstname} eq '') {
          die print "must enter first name";
    }