Skip to content
This repository has been archived by the owner on Nov 2, 2018. It is now read-only.

A little class which builds/validates a form for you. - No longer maintained.

Notifications You must be signed in to change notification settings

MikeRogers0/PHP-HTML5-Form-class

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is intended to simple HTML5 forms, you may want to consider Zend_Form http://framework.zend.com/manual/2.0/en/modules/zend.form.quick-start.html for making something a little more complex.

Building & displaying the form

To create the form, call the class.

$myForm = new mr_form();

then add a few inputs

$myForm->setInputField(array('name'=>'your-name', 'required'=>true), 'Your Name', true); $myForm->setInputField(array('name'=>'submit', 'value'=>'Submit', 'type'=>'Submit'));

Then to display the form, use this code:

$myForm->display();

Validating the form

Validating the form is really easy, the best way to do it is:

if($myForm->isSent() && $myForm->validInput()){ // The form is ok - work with data here }

About

A little class which builds/validates a form for you. - No longer maintained.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages