Help for this page

Select Code to Download


  1. or download this
    <form method="post" action="./yourscript.pl">
    <input type="hidden" name="cinfo" value=$cinfo>
    <input type="Submit">
    </form>
    
  2. or download this
    # Look this Package up on Perlmonks to learn more about it
    use CGI qw/:standard/;
    ...
    my $cinfo = $Query->param('cinfo'); 
    print $Query->header();
    print $cinfo;