Help for this page

Select Code to Download


  1. or download this
    <p>This is a paragraph with some <? print($generated_content) ?> in PH
    +P.</p>
    
  2. or download this
    <p>This is a paragraph with some <TMPL_VAR generated_content> using HT
    +ML::Template</p>
    
  3. or download this
    use CGI::Simple;            #standard module import
    my $cgi = CGI::Simple->new; #standard object creation
    
    #now I need to get a copy of the userid form var
    my $userid = $cgi->param('userid');
    
  4. or download this
    my %formvar = $cgi->Vars;
    my $userid = $formvar{userid};