Archives for July, 2007

swapeForm


Here is an easy php 5 class to make dynamic form table.
I made this class to make dynamic forms. With this class you don’t have to write html code for form and a table.
Here is how to use this class:
 
< ?php
include(’swapeForm.php’);
 
$form = new swapeForm();
$form->add(’Name’); // adding input
$form->setAttrib(’id’ , ‘formName’); // adding atributes to [...]