maxLength(100)->validate('message'); $validator->email()->validate('user-email'); $validator->captcha('captcha')->validate('captcha'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['contact-form-popover-mp'] = $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 - Contact Form', 'filter_values' => 'contact-form-popover-mp', 'sent_message' => '

Your message has been successfully sent !

' ); $sent_message = Form::sendMail($email_config); Form::clear('contact-form-popover-mp'); } } elseif (Form::testToken('join-us-popover-form-mp') === true) { /*join-us-popover-form-mp validation & email */ // create validator & auto-validate required fields $validator = Form::validate('join-us-popover-form-mp'); // additional validation $validator->email()->validate('join-us-user-email'); // check for errors if ($validator->hasErrors()) { $_SESSION['errors']['join-us-popover-form-mp'] = $validator->getAllErrors(); } else { $email_config = array( 'sender_email' => 'contact@phpformbuilder.pro', 'sender_name' => 'Php Form Builder', 'recipient_email' => addslashes($_POST['join-us-user-email']), 'subject' => 'Php Form Builder - Join Us Popover Form', 'filter_values' => 'join-us-popover-form-mp', 'sent_message' => '

Your message has been successfully sent !

' ); $sent_message = Form::sendMail($email_config); Form::clear('join-us-popover-form-mp'); } } } /* ================================================== The Contact Form ================================================== */ $form = new Form('contact-form-popover-mp', '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, 'xs'); $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, 'xs'); $form->addIcon('user-email', '', 'before'); $form->addInput('email', 'user-email', '', '', 'class=input-group-field, placeholder=Email, required'); $form->addIcon('user-phone', '', 'before'); $form->addHelper('Enter a valid US phone number', 'user-phone'); $form->addInput('text', 'user-phone', '', '', 'class=input-group-field, placeholder=Phone, data-fv-phone, data-fv-phone-country=US, required'); $form->addTextarea('message', '', 'Your message', 'cols=30, rows=4, required'); $form->addPlugin('word-character-count', '#message', 'default', array('%maxAuthorized%' => 100)); $form->addCheckbox('newsletter', 'Suscribe to Newsletter', 1, 'checked=checked'); $form->printCheckboxGroup('newsletter', ''); $form->setCols(3, 9, 'sm'); $form->addInput('text', 'captcha', '', 'Type the following characters :', 'size=15'); $form->addPlugin('captcha', '#captcha'); $form->setCols(-1, -1); $form->centerButtons(true); $form->addBtn('submit', 'submit-btn', 1, 'Send ', 'class=success button'); $form->endFieldset(); // popover plugin $form->popover('#popover-link'); // nice check plugin $form->addPlugin('nice-check', 'form', 'default', ['%skin%' => 'blue']); // jQuery validation $form->addPlugin('formvalidation', '#contact-form-popover-mp'); /* ================================================== The Join Us Form ================================================== */ $form_2 = new Form('join-us-popover-form-mp', 'horizontal', 'novalidate', 'foundation'); // $form->setMode('development'); $form_2->setCols(0, 12); $form_2->startFieldset(); $form_2->addHtml('

Get Free Email Updates!
Join us for FREE to get instant email updates!

'); $form_2->addIcon('join-us-user-name', '', 'before'); $form_2->addInput('text', 'join-us-user-name', '', '', 'class=input-group-field, placeholder=Your Name, required'); $form_2->addIcon('join-us-user-email', '', 'before'); $form_2->addInput('email', 'join-us-user-email', '', '', 'class=input-group-field, placeholder=Email, required'); $form_2->addHtml('

Your Information is Safe With us!

'); $form_2->centerButtons(true); $form_2->addBtn('submit', 'join-us-submit-btn', 1, 'Get Access Today', 'class=button primary'); $form_2->endFieldset(); // popover plugin $form_2->popover('#popover-link-2'); // jQuery validation $form_2->addPlugin('formvalidation', '#join-us-popover-form-mp'); ?> Foundation Multiple popover forms - How to create PHP forms easily printIncludes('css'); $form_2->printIncludes('css'); ?>

Php Form Builder - several Popover Forms on same page
click to sign up or contact

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