roja...@gmail.com
unread,Feb 2, 2008, 11:50:52 PM2/2/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Connecticut PHP Developers Group - CPDG
Here is my first contribution. This is a form management. I was tired
of creating a processor for each form a created. I decided to create a
processor that can handle any type of form and any type of required
fields.
This processor contain numbers validation, email format validation,
required fields validation, anti-headers injections, post enforcer,
browser agent validation, and host validation.
In other words a very secure form. I am working on some revisions and
adding a captcha security for extra protection.
This is processor is very simple to use. Edit the configuration file,
create your form, add a hidden field under the name of required and
your fields separated by a pipe | example :
<input name="required" type="hidden" id="required" value="name|group|
email" />
This will make name, group, and email required. And the processor will
do the rest.
The following name fields are verify by default.
Name: email
Verification: Format
Name: phone
Verification: Number
Name: zipcode
Verification: Number
By naming your fields with any of this 3 names they will be auto
verified.
Requirements:
PHP 4 or higher
Apache
Zend Optimizer installed on your host.