maxLength(100)->validate('message');
$validator->email()->validate('user-email');
// recaptcha validation
$validator->recaptcha('6LcSY1oUAAAAAHXz7K72uP2thZT7xhZ5zc9Q5Vgc', 'Recaptcha Error')->validate('g-recaptcha-response');
// check for errors
if ($validator->hasErrors()) {
$_SESSION['errors']['contact-form-2'] = $validator->getAllErrors();
} else {
$_POST['message'] = nl2br($_POST['message']);
$email_config = array(
'sender_email' => 'contact@phpformbuilder.pro',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['user-email']),
'subject' => 'Contact from Php Form Builder',
'filter_values' => 'contact-form-2',
'sent_message' => '
Your message has been successfully sent !
'
);
$sent_message = Form::sendMail($email_config);
Form::clear('contact-form-2');
}
}
/* ==================================================
The Form
================================================== */
$form = new Form('contact-form-2', 'vertical', 'novalidate', 'foundation');
// $form->setMode('development');
$form->startFieldset('Please fill in this form to contact us')
->addInput('text', 'user-name', '', 'Your name : ', 'class=input, required')
->addInput('email', 'user-email', '', 'Your email : ', 'required')
->addHelper('Enter a valid US phone number', 'user-phone')
->addInput('tel', 'user-phone', '', 'Your phone : ', 'data-intphone=true, data-fv-intphonenumber=true, data-initial-country=us, data-allow-dropdown=false, required')
->addTextarea('message', '', '', 'cols=30, rows=4, required')
->addCheckbox('newsletter', '', 1, 'class=lcswitch, data-ontext=Yes, data-offtext=No, data-theme=yellow, checked=checked')
->printCheckboxGroup('newsletter', 'Suscribe to Newsletter', true)
->addInvisibleRecaptcha('6LcSY1oUAAAAAE6UUHkyTivIZvAO6DSU9Daqry8h')
->addBtn('submit', 'submit-btn', 1, 'Submit', 'class=button primary')
->endFieldset()
// word-character-count plugin
->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100))
// jQuery validation
->addPlugin('formvalidation', '#contact-form-2');
?>
Foundation Contact Form Vertical - How to create PHP forms easily
printIncludes('css'); ?>
Php Form Builder - Foundation Contact Form Vertical
printIncludes('js');
$form->printJsCode();
?>