PHP Classes

File: templates/form_dependent_validation.html.php

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

Contents

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

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

<tr>
<th align="right"><?php $form->AddLabelPart(array("FOR"=>"dependent")); ?>:</th>
<td><?php $form->AddInputPart("dependent"); ?></td>
<td><?php echo (IsSet($verify["dependent"]) ? "[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>