Help for this page

Select Code to Download


  1. or download this
    ~/perl_programs$ ./my_prog.pl name1=value1&name2=value2
    [1] 462
    ...
    </ul>
    </body>
    </html>(HANGS RIGHT HERE!!)
    
  2. or download this
    ~/perl_programs$ ./my_prog.pl name1=value1 name2=value2
    Content-Type: text/html; charset=ISO-8859-1
    
    ...
    </ul>
    </body>
    </html>~/perl_programs$
    
  3. or download this
    ~/perl_programs$ ./my_prog.pl name1=value1;name2=value2
    Content-Type: text/html; charset=ISO-8859-1
    
    ...
    </ul>
    </body>
    </html>~/perl_programs$
    
  4. or download this
    #!/usr/bin/env perl
    use strict; 
    use warnings; 
    ...
          $q->start_html;
    print Dump;
    print $q->end_html;
    
  5. or download this
    $ perl -v
    
    ...
    
    $ perl -MCGI -e 'print $CGI::VERSION'
    3.59