Help for this page

Select Code to Download


  1. or download this
        <tr> 
          <td align="right" valign="baseline">Last Name :</td>
    ...
          <tmpl_if err_last_name><br><font color="#FF0000"><strong>Please 
    +input your last name</strong></font></tmpl_if>
          </td>
        </tr>
    
  2. or download this
    use Data::FormValidator;
      
    ...
      foreach my $f ( $results->missing ) {
            $output = $f. " is missing\n<br>";
      }