notStartsWith('robot', '
Sorry, I don\' really like robots ...
')->validate('human-or-robot'); if ($validator->hasErrors()) { $current_step = 1; $_SESSION['errors']['form-step-1'] = $validator->getAllErrors(); } else { // register posted values and go to next step Form::registerValues('form-step-1'); $current_step = 2; } } elseif (isset($_POST['form-step-2']) && Form::testToken('form-step-2') === true) { /* Validate step 2 */ // create validator & auto-validate required fields $validator = Form::validate('form-step-2'); if ($validator->hasErrors()) { $current_step = 2; $_SESSION['errors']['form-step-2'] = $validator->getAllErrors(); } else { // register posted values and go to next step Form::registerValues('form-step-2'); $current_step = 3; } } elseif (isset($_POST['form-step-3']) && Form::testToken('form-step-3') === true) { /* Validate step 3 */ // create validator & auto-validate required fields $validator = Form::validate('form-step-3'); // additional validation $validator->email()->validate('user-email'); if ($validator->hasErrors()) { $current_step = 3; $_SESSION['errors']['form-step-3'] = $validator->getAllErrors(); } elseif ($_POST['are-informations-correct'] < 1) { // back to step 1 with user message (wrong informations) $current_step = 1; $user_message = '
Wrong informations ! Please try again ...
' . "\n"; } else { // send email & go back to step 1 with user message (email sended) Form::registerValues('form-step-3'); $user_values = Form::mergeValues(array('form-step-1', 'form-step-2', 'form-step-3')); /* translate boolean values to text */ $find = array('/0/', '/1/'); $replace = array('No', 'Yes'); $user_values['human-or-robot'] = preg_replace($find, $replace, $user_values['human-or-robot']); $user_values['are-informations-correct'] = preg_replace($find, $replace, $user_values['are-informations-correct']); $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', 'values' => $user_values, 'filter_values' => 'form-step-1, form-step-2, form-step-3' ); $user_message = Form::sendMail($email_config); $current_step = 1; } } } if ($current_step == 1) { /* ================================================== Step 1 ================================================== */ $form_id = 'form-step-1'; $form = new Form('form-step-1', 'horizontal', 'data-fv-no-icon=true, novalidate'); // $form->setMode('development'); $form->addRadio('human-or-robot', 'I\'m a real human', 'real human'); $form->addRadio('human-or-robot', 'I\'m a robot', 'robot'); $form->printRadioGroup('human-or-robot', 'Are you a human or a robot ?', false, 'required'); $form->addBtn('submit', 'submit-btn', 1, 'Next ', 'class=btn btn-sm btn-success ladda-button, data-style=zoom-in'); } elseif ($current_step == 2) { /* ================================================== Step 2 ================================================== */ $form_id = 'form-step-2'; $form = new Form('form-step-2', 'horizontal', 'data-fv-no-icon=true, novalidate'); // $form->setMode('development'); $form->addOption('how-did-you-come-here', 'By foot', 'By foot'); $form->addOption('how-did-you-come-here', 'By plane', 'By plane'); $form->addOption('how-did-you-come-here', 'By car', 'By car'); $form->addOption('how-did-you-come-here', 'By boat', 'By boat'); $form->addOption('how-did-you-come-here', 'By bike', 'By bike'); $form->addSelect('how-did-you-come-here', 'How did you come here ?', 'class=select2 show-tick, required'); $form->addBtn('submit', 'back-btn', 1, ' Back', 'class=btn btn-sm btn-warning', 'btns'); $form->addBtn('submit', 'submit-btn', 2, 'Next ', 'class=btn btn-sm btn-success ladda-button, data-style=zoom-in', 'btns'); $form->printBtnGroup('btns'); } elseif ($current_step == 3) { /* ================================================== Step 3 ================================================== */ $form_id = 'form-step-3'; $form = new Form('form-step-3', 'horizontal', 'data-fv-no-icon=true, novalidate'); // $form->setMode('development'); $form->addHtml('

You are human, you came here ' . strtolower($_SESSION['form-step-2']['how-did-you-come-here']) . '.

'); $form->addRadio('are-informations-correct', 'Yes, Excellent', 1); $form->addRadio('are-informations-correct', 'Absolutely not', 0); $form->printRadioGroup('are-informations-correct', 'Are these informations correct ?', false, 'required'); $form->addHelper('Enter your real e-mail if you want to receive results', 'user-email'); $form->addInput('email', 'user-email', '', 'E-mail', 'required'); $form->addBtn('submit', 'back-btn', 2, ' Back', 'class=btn btn-sm btn-warning', 'btns'); $form->addBtn('submit', 'submit-btn', 3, 'Submit ', 'class=btn btn-sm btn-success ladda-button, data-style=zoom-in', 'btns'); $form->printBtnGroup('btns'); } $form->addPlugin('icheck', 'input', 'default', array('%theme%' => 'square', '%color%' => 'green')); // jQuery validation $form->addPlugin('formvalidation', '#' . $form_id); ?> Bootstrap 4 Simple Step Form - How to create PHP forms easily printIncludes('css'); ?>

Php Form Builder - Simple Step Form
follow steps to complete

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