Help for this page

Select Code to Download


  1. or download this
    use CGI qw(:standard);
    print "content-type:text/plain\n\n";
    my $query = CGI->new();
    
  2. or download this
    use CGI qw(:standard);
    my $query = CGI->new();
    print $query->header('text/plain');
    
  3. or download this
    # Typo?
    if($Phonenumber=!/^[6-9]+\d/)
    
    # Fixed, but...
    if($Phonenumber !~ /^[6-9]+\d/)