Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    #Your Perl Program here
    print "Location:http://www.perlmonks.org\n\n";
    exit;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print "HTTP/1.1 302 Moved\n";
    print "Location:http://www.perlmonks.org\n\n";
    exit;