PHP Classes

File: templates/form_linked_select_body.html.php

Recommend this page to a friend!
  Classes of Manuel Lemos   PHP Forms Class with HTML Generator and JavaScript Validation   templates/form_linked_select_body.html.php   Download  
File: templates/form_linked_select_body.html.php
Role: Auxiliary script
Content type: text/plain
Description: Linked selects form body template
Class: PHP Forms Class with HTML Generator and JavaScript Validation
HTML forms generation and validation.
Author: By
Last change: Fixed HTML validation issues.
Date: 15 years ago
Size: 1,056 bytes
 

Contents

Class file image Download
<fieldset>
<legend><b>Choose location</b></legend>
<center><table>

<tr>
<th><?php $form->AddLabelPart(array("FOR"=>"continent")); ?></th>
<td>&nbsp;</td>
<th><?php $form->AddLabelPart(array("FOR"=>"country")); ?></th>
<td>&nbsp;</td>
<th><?php $form->AddLabelPart(array("FOR"=>"location")); ?></th>
</tr>

<tr>
<td align="center"><?php $form->AddInputPart("continent"); ?></td>
<td align="center"><?php $form->AddInputPart("update"); ?></td>
<td align="center"><?php $form->AddInputPart("country"); ?></td>
<td align="center"><?php $form->AddInputPart("update"); ?></td>
<td align="center"><?php $form->AddInputPart("location"); ?></td>
</tr>

<tr>
<td align="center"><?php
       
if(IsSet($verify["continent"]))
        {
?>
[Verify]
<?php
       
}
?></td>
<td>&nbsp;</td>
<td align="center"><?php
       
if(IsSet($verify["country"]))
        {
?>
[Verify]
<?php
       
}
?></td>
<td>&nbsp;</td>
<td align="center"><?php
       
if(IsSet($verify["location"]))
        {
?>
[Verify]
<?php
       
}
?></td>
</tr>

</table></center>
</fieldset>
<br />
<center><?php $form->AddInputPart("doit"); ?></center>