PHP Classes

File: templates/form_auto_complete_body.html.php

Recommend this page to a friend!
  Classes of Manuel Lemos   PHP Forms Class with HTML Generator and JavaScript Validation   templates/form_auto_complete_body.html.php   Download  
File: templates/form_auto_complete_body.html.php
Role: Auxiliary script
Content type: text/plain
Description: HTML template with embedded PHP to define the form body for auto-complete text custom input plug-in
Class: PHP Forms Class with HTML Generator and JavaScript Validation
HTML forms generation and validation.
Author: By
Last change: Fixed path.
Date: 17 years ago
Size: 566 bytes
 

Contents

Class file image Download
<fieldset>
<legend><b>Type a few characters in the color or font fields</b></legend>
<center><table>

<tr>
<th align="right"><?php $form->AddLabelPart(array('FOR'=>'color')); ?></th>
<td><?php
    $form
->AddInputPart('color');
   
$form->AddInputPart('complete_color');
?><span id="complete_color_feedback"></span></td>
</tr>

<tr>
<th align="right"><?php $form->AddLabelPart(array('FOR'=>'font')); ?></th>
<td><?php
    $form
->AddInputPart('font');
   
$form->AddInputPart('complete_font');
?><span id="complete_font_feedback"></span>
</td>
</tr>

</table></center>
</fieldset>