maxLength(100)->validate('message'); $validator->email()->validate('user-email'); // recaptcha validation $validator->recaptcha('6LeNWaQUAAAAAOnei_86FAp7aRZCOhNwK3e2o2x2', 'Recaptcha Error')->validate('g-recaptcha-response'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['contact-form-1-popover'] = $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-1-popover', 'sent_message' => '

Your message has been successfully sent !

' ); $sent_message = Form::sendMail($email_config); Form::clear('contact-form-1-popover'); } } /* ================================================== The Form ================================================== */ $form = new Form('contact-form-1-popover', 'horizontal', 'novalidate', 'foundation'); // $form->setMode('development'); $form->startFieldset('Please fill in this form to contact us'); $form->addHtml('

All fields are required

'); $form->groupInputs('user-name', 'user-first-name'); $form->setCols(0, 6, 'md'); $form->addIcon('user-name', '', 'before'); $form->addInput('text', 'user-name', '', '', 'class=input-group-field, placeholder=Name, required'); $form->addIcon('user-first-name', '', 'before'); $form->addInput('text', 'user-first-name', '', '', 'class=input-group-field, placeholder=First Name, required'); $form->setCols(0, 12, 'md'); $form->addIcon('user-email', '', 'before'); $form->addInput('email', 'user-email', '', '', 'class=input-group-field, placeholder=Email, required'); $form->addIcon('user-phone', '', 'before'); $form->addInput('tel', 'user-phone', '', '', 'class=input-group-field, data-intphone=true, data-fv-intphonenumber=true, required'); $form->addTextarea('message', '', '', 'cols=30, rows=4, placeholder=Message, required'); $form->setCols(6, 6, 'xs'); $form->addCheckbox('newsletter', '', '1', 'class=lcswitch, data-ontext=Yes, data-offtext=No, data-theme=yellow, checked'); $form->printCheckboxGroup('newsletter', 'Suscribe to Newsletter'); $form->setCols(0, 12, 'xs'); $form->addRecaptchaV3('6LeNWaQUAAAAAGO_c1ORq2wla-PEFlJruMzyH5L6', 'foundation-contact-form-1-popover'); $form->addHtml('

 

'); $form->centerButtons(true); $form->addBtn('submit', 'submit-btn', 1, 'Send ', 'class=success button'); $form->endFieldset(); // word-character-count plugin $form->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100)); // popover $form->popover('#popover-link'); // jQuery validation $form->addPlugin('formvalidation', '#contact-form-1-popover'); ?> Foundation Popover Contact Form - How to create PHP forms easily printIncludes('css'); ?>

Php Form Builder - Foundation Popover Contact Form

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