Help for this page

Select Code to Download


  1. or download this
            <tr id="${form}_${field}_row">
                <td id="${form}_${field}_label">Label</td>
                <td id="${form}_${field}_input"><input tag></td>
                <td id="${form}_${field}_error">Error</td><!-- if invalid 
    +-->
            </tr>
    
  2. or download this
    #!/usr/bin/perl --
    
    ...
    
    print $form->render(header => 1);
    
  3. or download this
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html
            PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    ...
    </form>
    </body>
    </html>
    
  4. or download this
    #!/usr/bin/perl --
    
    use strict;
    ...
    $form->field(name => 'acctinfo_lname', label => 'Last Name');
    
    print $form->render(header => 1);