blob: e3986904229638db07686d630c76dad9745ea5c8 (
plain) (
tree)
|
|
<?php
/*
* Model web-forms and simplify the process of accepting, validating, and sanitizing input
*/
class Form
{
/*
* Constructor
*/
function __construct()
{
$this->textFields = array();
$this->errorlist = array();
$this->warninglist = array();
$this->noticelist = array();
}
/*
* Add new text field to the form
*/
function field_text($name, $req = true)
{
if ($req !== true)
$req = false;
$this->textFields[] = array(
'name' => $name,
'req' => $req
);
}
}
?>
|