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', 'material'); // $form->setMode('development'); $form->startFieldset('Please fill the form below'); $form->setCols(0, 6); $form->groupInputs('first-name', 'last-name'); $form->addInput('text', 'first-name', '', 'First name', 'required'); $form->addInput('text', 'last-name', '', 'Last name', 'required'); $form->setCols(0, 12); $form->addInput('email', 'user-email', '', 'E-Mail', 'required'); $form->addHelper('Enter a valid phone number', 'phone-number'); $form->addInput('tel', 'phone-number', '', '', 'placeholder=Phone Number, data-intphone=true, data-fv-intphonenumber=true, required'); $form->addInput('number', 'number-of-guests', '', 'Number of Guests:', 'data-fv-integer, required'); $form->setCols(0, 8); $form->groupInputs('date', 'time'); $form->addInput('text', 'date', '', 'Date', 'data-min-date=' . date('Y-m-d') . ', required'); $form->setCols(0, 4); $form->addInput('text', 'time', '', 'Time', 'required'); $form->setCols(0, 12); $form->addOption('reservation-type', 'Dinner', 'Dinner', '', 'data-icon=material-icons local_dining'); $form->addOption('reservation-type', 'Birthday/ Anniversary', 'Birthday/ Anniversary', '', 'data-icon=material-icons cake'); $form->addOption('reservation-type', 'Nightlife', 'Nightlife', '', 'data-icon=material-icons brightness_3'); $form->addOption('reservation-type', 'Private', 'Private', '', 'data-icon=material-icons vpn_key'); $form->addOption('reservation-type', 'Wedding', 'Wedding', '', 'data-icon=material-icons favorite_border'); $form->addOption('reservation-type', 'Corporate', 'Corporate', '', 'data-icon=material-icons work'); $form->addOption('reservation-type', 'Other', 'Other', '', 'data-icon=material-icons help'); $form->addSelect('reservation-type', 'Reservation Type', 'class=select2 browser-default no-autoinit, data-minimum-results-for-search=-1, 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->centerButtons(true); $form->addBtn('submit', 'submit-btn', 1, 'Submit arrow_forward_ios', 'class=btn waves-effect waves-light waves-effect waves-light ladda-button, data-style=zoom-in'); $form->endFieldset(); // material datepicker $form->addPlugin('material-datepicker', '#date'); // material timepicker $form->addPlugin('material-timepicker', '#time'); // jQuery validation $form->addPlugin('formvalidation', '#booking-form'); ?> Material Design Booking Form - How to create PHP forms easily printIncludes('css'); ?>

Php Form Builder - Material Design Booking Form

render(); ?>
printIncludes('js'); $form->printJsCode(); ?>