With form processor you can convert a static form into a running form in lower than 5 mins. For the moment it has 2 buildin handlers to send the form content with mail or to save the content material in a CSV report. But with a little of PHP knowledge you'll easely write your own handlers.
have a look at the example video and spot how easy it's to make use of and enforce.
Options
- Convert static bureaucracy to a operating one
- Form validation (electronic mail, url, required, phone, number, date)
- No coding knowledge needed to make your contact shape work
- Form construction doesn’t matter
- Write form content to CSV
- E-Mail form content
- Upload shape content to MySQL database desk
Deploy
Place the following ahead of your form component:
<?php include("../FormProcessor.php"); $Form = new FormProcessor(); $Form->setHandler( "form_email_process", array("to" => "youremailaddresss", "emailfield" => "E Mail")); $Form->start(); ?> <div identity="frmsuccess">Thanks for sending us an e mail!</div>The frmsuccess part will only be displayed whilst the shape is valid and submitted. And position the following after the shape close element:
$Shape->forestall();Upload electronic mail, url, required, ... classes to the shape fields depending on what form of field it's. for instance if an email input field is needed you upload the desired and the e-mail class to that input box:
<input type="textual content" identification="Email" name="Email" magnificence="electronic mail required"/>And now you might have form that works.
Updates
v1.5 (26/09/2010) * Fixed special characters problem * Feature: Required select field * Delivered ship reproduction to electronic mail processor * Use more than one form processor cases on one web page * Redirect after publish * Display return message from handler after publish v1.4.ZERO (SIXTEEN/12/2010) * Mounted drawback with multiple cases of the same form handler. v1.3.ZERO (10/11/2010) * Mounted undefined variable categories. v1.2.ZERO (ELEVEN/10/2010) Fixed problems with empty categories/now not required fields. v1.1.0 (26/08/2010) * Use multiple shape processors. for example CSV + Email on one form * Introduced MySQL database processor * 0 is now also a sound quantity * Fastened date compare * Updated documentationFULL DOWNLOAD
No comments:
Post a Comment