FoRMAiD
-------
FoRMAiD is an object oriented (OO) toolset for creating web forms
and tables for maintaining data in an easy, fast and secure way.
When using the framework, creating a web form is more like configuration
rather than programming.
Website and more information : http://formaid.sourceforge.net/
The framework is released under GPLv3 (http://www.gnu.org/copyleft/gpl.html)
Requirements
============
PHP 5.1 (or higher)
Installation instructions
=========================
* Move the formaid directory to a place where you keep other php code and libraries.
Preferably this directory is not directly web accessible,
i.e. it should not be in your www root dir.
mv ./formaid /path_to/.
* Copy the sample config file (config.sample.php) that is located
in the framework root dir :
cd /path_to/formaid/
cp config.sample.php config.php
and edit the config.php file with your favorite editor.
You can change several config settings, but the most important ones are the settings
for connecting to the database.
* Include the parts of the framework you need in your php files.
If you want to include a form :
require_once "/path_to/formaid/form.class.php";
or, if you want to include a table :
require_once "/path_to/formaid/table.class.php";
In both cases, all necessary files are included to make everything work.