email()->validate('user-email'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['contact-form-3'] = $validator->getAllErrors(); // var_dump($_SESSION['errors']['contact-form-3']); } 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-3' ); $sent_message = Form::sendMail($email_config); Form::clear('contact-form-3'); } } /* ================================================== The Form ================================================== */ $form = new Form('contact-form-3', 'horizontal', 'data-fv-no-icon=true, novalidate'); $form->setMode('development'); $form->setCols(0, 12); $form->startFieldset('Please fill in this form to contact us'); $form->setCols(0, 6); $form->groupInputs('user-name', 'user-first-name'); $form->addIcon('user-name', '', 'before'); $form->addInput('text', 'user-name', '', '', 'placeholder=Name*, required'); $form->addInput('text', 'user-first-name', '', '', 'placeholder=First Name'); $form->setCols(0, 12); $form->addIcon('user-email', '', 'before'); $form->addInput('email', 'user-email', '', '', 'placeholder=Email, required*'); $form->addIcon('user-phone', '', 'before'); $form->addInput('tel', 'user-phone', '', '', 'data-intphone=true, data-fv-intphonenumber=true, required'); $form->addHelper('If other, please tell us more ... ', 'subject'); $form->addOption('subject', '', 'Your request concerns ...'); $form->addOption('subject', 'Support', 'Support', '', 'data-icon=fa fa-info-circle text-warning'); $form->addOption('subject', 'Sales', 'Sales', '', 'data-icon=fa fa-usd text-warning'); $form->addOption('subject', 'Other', 'Other', '', 'data-icon=fa fa-question-circle text-warning'); $form->addSelect('subject', '', 'class=select2'); $form->startDependentFields('subject', 'Other'); $form->addInput('text', 'subject-other', '', '', 'placeholder=Please tell more about your request ..., required'); $form->endDependentFields(); $form->addTextarea('message', 'Your message ...', '', 'cols=30, rows=4, required'); $form->addPlugin('tinymce', '#message', 'contact-config'); $form->setCols(6, 6); $form->addCheckbox('newsletter', '', 1, 'class=lcswitch mb-3, data-ontext=Yes, data-offtext=No, data-theme=gray-dark, checked=checked'); $form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter', true, 'class=text-right mr-3 mb-3'); $form->setCols(0, 12); $form->centerButtons(true); $form->addBtn('submit', 'submit-btn', 1, 'Send ', 'class=btn btn-success ladda-button, data-style=zoom-in'); $form->endFieldset(); $form->addHtml('

* Required fields

'); // jQuery validation $form->addPlugin('formvalidation', '#contact-form-3'); ?> Bootstrap 4 Contact Form with Rich Text Editor - How to create PHP forms easily printIncludes('css'); ?>

Php Form Builder - Contact Form
with Rich Text Editor and Dependent Field

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