email()->validate('user-email'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['room-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 - Room Booking Form', 'filter_values' => 'room-booking-form', 'sent_message' => '
Your message has been successfully sent !
' ); $sent_message = Form::sendMail($email_config); Form::clear('room-booking-form'); } } /* ================================================== The Form ================================================== */ $form = new Form('room-booking-form', 'horizontal', 'novalidate', 'material'); // $form->setMode('development'); $form->startFieldset('Book a Room'); $form->setCols(3, 4); $form->groupInputs('first-name', 'last-name'); $form->addHelper('First name', 'first-name'); $form->addInput('text', 'first-name', '', 'Full Name : ', 'required'); $form->setCols(0, 5); $form->addHelper('Last name', 'last-name'); $form->addInput('text', 'last-name', '', '', 'required'); $form->setCols(3, 9); $form->addInput('email', 'user-email', '', 'E-Mail : ', 'placeholder=email@example.com, required'); $form->addInput('text', 'phone-number', '', 'Phone Number : ', 'required'); $form->addPlugin('material-datepicker', '#arrival-date'); $form->addInput('text', 'arrival-date', '', 'Arrival Date', 'required'); $form->groupInputs('number-of-nights', 'number-of-guests'); for ($i=1; $i <= 30; $i++) { $form->addOption('number-of-nights', $i, $i); } $form->addOption('number-of-nights', 'more than 30', '30 +'); $form->setCols(3, 3); $form->addIcon('number-of-nights', 'hotel', 'before'); $form->addSelect('number-of-nights', 'Number of Nights', ' required'); for ($i=1; $i <= 10; $i++) { $form->addOption('number-of-guests', $i, $i); } $form->addOption('number-of-guests', 'more than 10', '10 +'); $form->addIcon('number-of-guests', 'person_add', 'before'); $form->addSelect('number-of-guests', 'Number of Guests', ' required'); $form->addPlugin('tinymce', '#additional-informations', 'contact-config'); $form->setCols(3, 9); $form->addTextarea('additional-informations', '', 'Additional Informations'); $form->setCols(0, 12); $form->centerButtons(true); $form->addBtn('submit', 'submit-btn', 1, 'Submit', 'class=btn waves-effect waves-light ladda-button, data-style=zoom-in'); $form->endFieldset(); // jQuery validation $form->addPlugin('formvalidation', '#room-booking-form'); ?>