Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    print "Content-type: text/html\n\n";
    foreach my $scalar (<STDIN>)
    {
           print "Data received is: " . $scalar . "\n\n";
    }
    
  2. or download this
    -----------------------------18908589074631857321096704418
    Content-Disposition: form-data; name="TestFormField"
     
    ...
     
    Continue
    -----------------------------18908589074631857321096704418--
    
  3. or download this
    #!/usr/bin/perl
    use CGI qw (-debug);
    use CGI::Carp qw (fatalsToBrowser);
    ...
    print "Dump is:\n";
    my $CGIValues = new CGI;
    $CGIValues->Dump();