Help for this page

Select Code to Download


  1. or download this
    <form action="foo1.pl" method="post">
      <input type="text" name="firstname" />
      <input type="text" name="lastname" />
      <input type="submit" />
    </form>
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
                      );
    
    print $template->output;
    
  3. or download this
    <form action="foo2.pl" method="post">
      <input type="text" name="firstname" value="<tmpl_var firstname>" />
      <input type="text" name="lastname" value="<tmpl_var lastname>" />
      <input type="submit" />
    </form>