email()->validate('user-email');
// check for errors
if ($validator->hasErrors()) {
$_SESSION['errors']['booking-form'] = $validator->getAllErrors();
} else {
$email_config = array(
'sender_email' => 'contact@phpformbuilder.pro',
'sender_name' => 'Php Form Builder',
'recipient_email' => addslashes($_POST['user-email']),
'subject' => 'Php Form Builder - Booking Form',
'filter_values' => 'booking-form, date_submit, time_submit',
'sent_message' => '
Your message has been successfully sent !
'
);
$sent_message = Form::sendMail($email_config);
Form::clear('booking-form');
}
}
/* ==================================================
The Form
================================================== */
$form = new Form('booking-form', 'horizontal', 'novalidate', 'foundation');
// $form->setMode('development');
$form->startFieldset('Please fill the form below', 'class=fieldset');
$form->setCols(4, 4, 'md');
$form->groupInputs('first-name', 'last-name');
$form->addHelper('First name', 'first-name');
$form->addInput('text', 'first-name', '', 'Full Name : ', 'required');
$form->setCols(0, 4, 'md');
$form->addHelper('Last name', 'last-name');
$form->addInput('text', 'last-name', '', '', 'required');
$form->setCols(4, 8, 'md');
$form->addInput('email', 'user-email', '', 'E-Mail : ', 'required');
$form->addInput('tel', 'user-phone', '', 'Phone:', 'data-intphone=true, data-fv-intphonenumber=true, required');
$form->addInput('number', 'number-of-guests', '', 'Number of Guests: : ', 'data-fv-integer, required');
$form->setCols(4, 6, 'md');
$form->groupInputs('date', 'time');
$form->addPlugin('pickadate', '#date');
$form->addHelper('Date', 'date');
$form->addInput('text', 'date', '', 'Date / Time: ', 'data-min=' . date('Y-m-d') . ', data-select-years=true, data-select-months=true, required');
$form->setCols(0, 2, 'md');
$form->addPlugin('pickadate', '#time', 'pickatime');
$form->addHelper('Time', 'time');
$form->addInput('text', 'time', '', '', 'data-interval=30, data-min=08\,30, data-max=17\,00, required');
$form->setCols(4, 8, 'md');
$form->addOption('reservation-type', 'Dinner', 'Dinner', '', 'data-icon=fa fa-cutlery');
$form->addOption('reservation-type', 'Birthday/ Anniversary', 'Birthday/ Anniversary', '', 'data-icon=fa fa-birthday-cake');
$form->addOption('reservation-type', 'Nightlife', 'Nightlife', '', 'data-icon=fa fa-moon-o');
$form->addOption('reservation-type', 'Private', 'Private', '', 'data-icon=fa fa-user-secret');
$form->addOption('reservation-type', 'Wedding', 'Wedding', '', 'data-icon=fa fa-heart');
$form->addOption('reservation-type', 'Corporate', 'Corporate', '', 'data-icon=fa fa-briefcase');
$form->addOption('reservation-type', 'Other', 'Other', '', 'data-icon=fa fa-star');
$form->addSelect('reservation-type', 'Reservation Type', 'class=select2, required');
$form->startDependentFields('reservation-type', 'Other');
$form->addInput('text', 'reservation-type-other', '', '', 'placeholder=Please tell more ..., required');
$form->endDependentFields();
$form->addTextarea('special-request', '', 'Any Special Request ? ');
$form->addBtn('submit', 'submit-btn', 1, 'Submit ', 'class=success button');
$form->endFieldset();
// jQuery validation
$form->addPlugin('formvalidation', '#booking-form');
?>
Foundation Booking Form - How to create PHP forms easily
printIncludes('css'); ?>
Php Form Builder - Foundation Booking Form
printIncludes('js');
$form->printJsCode();
?>