This form shows how you can create your own functions with the PHP FormExtended class.
Here, custom functions are called in a loop to create the fields for each user.
<?php
use phpformbuilder\Form;
use phpformbuilder\FormExtended;
use phpformbuilder\Validator\Validator;
/* =============================================
start session and include form class
============================================= */
session_start();
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/FormExtended.php';
/* =============================================
validation if posted
============================================= */
$number_of_users = 4;
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('extended-users-form') === true) {
// create validator & auto-validate required fields
$validator = Form::validate('extended-users-form');
// additional validation
for ($i = 1; $i < $number_of_users; $i++) {
$validator->email()->validate('email_professional-' . $i);
}
// check for errors
if ($validator->hasErrors()) {
$_SESSION['errors']['extended-users-form'] = $validator->getAllErrors();
} else {
$options = array(
'sender_email' => '[email protected]',
'recipient_email' => addslashes($_POST['email_professional-1']),
'subject' => 'contact from PHP Form Builder'
);
$sent_message = Form::sendMail($options);
Form::clear('extended-contact-form');
}
}
/* ==================================================
The Form
================================================== */
$form = new FormExtended('extended-users-form', 'horizontal', 'novalidate', 'tailwind');
$form->setMode('development');
for ($i = 1; $i < $number_of_users; $i++) {
$form->startFieldset('User ' . $i);
$form->addIdentity($i);
$form->addBirth($i);
$form->addHtml('<hr>');
$form->addAddress($i);
$form->addHtml('<hr>');
$form->addContact($i);
$form->endFieldset();
}
$form->addCancelSubmit();
// Javascript validation
$form->addPlugin('formvalidation', '#extended-users-form');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Tailwind Extended Users Form - How to create PHP forms easily</title>
<meta name="description" content="Tailwind Form Generator - how to create a complete Users Form with Php Form Builder">
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/tailwind-forms/extended-users-form.php" />
<!-- Tailwind CSS - for demo purposes only - replace with your Tailwind compilation -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font awesome icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/solid.css" integrity="sha384-Tv5i09RULyHKMwX0E8wJUqSOaXlyu3SQxORObAI08iUwIalMmN5L6AvlPX2LMoSE" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/fontawesome.css" integrity="sha384-jLKHWM3JRmfMU0A5x5AkjWkw/EYfGUAGagvnfryNV3F9VqM98XiIH7VBGVoxVSc7" crossorigin="anonymous">
<?php $form->printIncludes('css'); ?>
<style>
fieldset {
padding: 20px 15px !important;
background: #f7f7f7;
}
legend {
padding: 5px 10px !important;
font-size: 1.1rem !important;
color: #fff;
background: #666;
}
</style>
</head>
<body>
<h1 class="text-center">Php Form Builder - Extended Users Form<br><small>Build a complete users form with a very few lines of code</small></h1>
<div class="container mx-auto md:px-5 lg:px-10 xl:px-48">
<div class="grid-cols-1">
<div class="mt-8 mb-10">
<p>This form shows how you can create your own functions with the PHP FormExtended class.</p>
<p>Here, custom functions are called in a loop to create the fields for each user.</p>
</div>
<?php
if (isset($sent_message)) {
echo $sent_message;
}
$form->render();
?>
</div>
</div>
<?php
$form->printIncludes('js');
$form->printJsCode();
?>
</body>
</html>