Jump to content

auFormData: Difference between revisions

From auWiki
New page: {{RightTOC}} FormData Category:Class Category:PHP The auFormData class is part of the auLib package. It is defined in the auForm.php file. ;Hierarchy * [[au...
 
Line 18: Line 18:
* $name = Name to submit the data under.
* $name = Name to submit the data under.
* $value = Value of the data.
* $value = Value of the data.
===WriteHTML===
<code>WriteHTML</code>
Writes out the HTML for this form element.

Revision as of 13:47, 22 April 2008

The auFormData class is part of the auLib package. It is defined in the auForm.php file.

Hierarchy

Usage

This class is used to add data to a form that doesn’t print but still gets sent to the server. Create an object from this class and add it to an auFormContainer object.

Public Functions

new auFormData

new auFormData($name, $value)

Creates a new form data element.

  • $name = Name to submit the data under.
  • $value = Value of the data.