PHP Classes

File: templates/form_custom_validation.html.php

Recommend this page to a friend!
  Classes of Manuel Lemos   PHP Forms Class with HTML Generator and JavaScript Validation   templates/form_custom_validation.html.php   Download  
File: templates/form_custom_validation.html.php
Role: Auxiliary script
Content type: text/plain
Description: Custom validation form body template
Class: PHP Forms Class with HTML Generator and JavaScript Validation
HTML forms generation and validation.
Author: By
Last change:
Date: 17 years ago
Size: 618 bytes
 

Contents

Class file image Download
<center><table summary="Input fields table">

<tr>
<th align="right"><?php $form->AddLabelPart(array("FOR"=>"first")); ?>:</th>
<td><?php $form->AddInputPart("first"); ?></td>
<td><?php echo (IsSet($verify["first"]) ? "[Verify]" : ""); ?></td>
</tr>

<tr>
<th align="right"><?php $form->AddLabelPart(array("FOR"=>"second")); ?>:</th>
<td><?php $form->AddInputPart("second"); ?></td>
<td><?php echo (IsSet($verify["second"]) ? "[Verify]" : ""); ?></td>
</tr>

<tr>
<td colspan="3" align="center"><hr /></td>
</tr>

<tr>
<td colspan="3" align="center"><?php $form->AddInputPart("doit"); ?></td>
</tr>

</table></center>