Download Latest Version formaid-0.1.zip (652.7 kB)
Email in envelope

Get an email when there's a new version of FoRMAiD

Home / 0.1
Name Modified Size InfoDownloads / Week
Parent folder
formaid-0.1.zip 2012-08-15 652.7 kB
README 2012-08-12 1.4 kB
formaid-0.1.tar.gz 2012-08-12 533.1 kB
formaid-0.1.tar.bz2 2012-08-12 420.2 kB
Totals: 4 Items   1.6 MB 0
                       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.
Source: README, updated 2012-08-12