PHP Beginners Guide

Welcome to PHP Form Builder's Beginners Guide

Here you'll learn in a few steps how to:

For any question or request

Please

Install and run a local PHP server

Download and install a PHP server - this is required to run PHP on your computer.

Most well-known are:

You'll find numerous pages and videos installing and running a PHP server.

Check your PHP version

  1. Create a new empty file at the root of your project, named, for example, test-form.php.

  2. Add the following line to your file:

    <?php phpinfo(); ?>
  3. Open your favorite browser and go to your file's URL, for example, http://localhost/test-form.php

  4. If your version is PHP 5.6 or newer, you're on the right track.

    If not, you've got to upgrade your PHP to a more recent version.

Upload the phpformbuilder folder

Register

Open phpformbuilder/register.php in your browser, and enter your purchase code to activate your copy.

Each purchased license allows the installation of PHP Form Builder on two different domains:

  • One for localhost
  • One for your production server

Once you register your purchase, delete register.php from your production server to avoid unwanted access.

Include required files on your page to build the form

  1. Open the test-form.php you created on step n°2 with your favorite editor (VS-Code, Sublime Text, Notepad++, Atom, ...)

  2. Add HTML basic markup:

    <!DOCTYPE html>
    <html>
    <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>Test Form</title>
    
    <!-- Bootstrap 5 CSS -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
    </head>
    <body>
    <h1>My first form</h1>
    
    <!-- Bootstrap 5 JavaScript -->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
    </body>
    </html>
  3. Now add the following code at the very beginning of your file:

    <?php
    use phpformbuilder\Form;
    use phpformbuilder\Validator\Validator;
    session_start();
    include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
    ?>

    This code will be the same for all pages containing forms.

    <?php
    // Following 2 lines are required since PHP 5.3 to set namespaces.
    // more details here: http://php.net/manual/en/language.namespaces.php
    use phpformbuilder\Form;
    use phpformbuilder\Validator\Validator;
    
    // Following line starts PHP session. That's to say we'll memorize variables in PHP session.
    session_start();
    
    // Then we include main form class, which contains all functions to build forms.
    include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
    ?>
  4. Refresh your test-form.php in your browser (http://localhost/my-project/test-form.php)

    If you see a blank page, all is ok, you can go on to next step

    If your browser throws an error 500, click button below to solve this.

    Your browser has thrown this error because PHP can't find Form.php.

    rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) should lead to the root of your project.
    If works fine if your server is well configured, but it seems that's not the case.

    To solve this, open ../phpformbuilder/server.php in your browser and follow the instructions.

    More explainations about error 500 are available at https://www.phpformbuilder.pro/documentation/help-center.php#warning-include_once

Build your first form

So let's start building the form.

  1. To create a new form, add this line just after the include_once statement Line 5 in your test-form.php:

    $form = new Form('test-form', 'horizontal', 'novalidate');

    $form = new Form('test-form', 'horizontal', 'novalidate');
    // this function creates a new form object.
    
    // arguments:
    //      'test-form' : this is the form name
    //      'horizontal': this will add class="form-horizontal"
    //      'novalidate': this will add 'novalidate' attribute. It prevents browser to use browser's html5 built-in validation.
    
    // You can skip 'novalidate' argument if you want to use browser's html5 built-in validation.
    
    // If you want Material Design style, instanciate this way:
    $form = new Form('test-form', 'horizontal', 'novalidate', 'material');
    
    // or with html5 validation:
    $form = new Form('test-form', 'horizontal', '', 'material');
  2. Add the following line to create an input field:

    $form->addInput('text', 'user-name', '', 'Name:', 'required, placeholder=Name');

    $form->addInput('text', 'user-name', '', 'Name:', 'required, placeholder=Name');
    // this function adds an input to your form.
    
    // arguments:
    //      'text'     : the html input type. can be for example 'text' or 'hidden', 'email', 'number', ...
    //      'user-name': the html "name" attribute
    //      'Name:'   : label content displayed on screen
    //      'required, placeholder=Name': can be any html addributes, separated with commas and without quotes.
  3. Add the following line to create 2 radio buttons with Nice Check plugin

    $form->addRadio('is-all-ok', 'Yes', 1);
    $form->addRadio('is-all-ok', 'No', 0);
    $form->printRadioGroup('is-all-ok', 'Is all ok?', false, 'required');
    $form->addPlugin('nice-check', '#test-form', 'default', ['skin' => 'red']);

    // add 2 radio buttons.
    // arguments:
    //      'is-all-ok'  : radio groupname
    //      'Yes'        : radio label
    //      1                      : radio value
    $form->addRadio('is-all-ok', 'Yes', 1);
    $form->addRadio('is-all-ok', 'No', 0);
    
    // render radio group
    // arguments:
    //      'is-all-ok'  : radio groupname
    //      'Is all ok?': radio group  label
    //      false                  : inline (true or false)
    //      'required'   : this will add 'required' attribute. can contain any html attribute(s), separated with commas.
    $form->printRadioGroup('is-all-ok', 'Is all ok?', false, 'required');
    
    // Add Nice Check plugin (beautiful radio buttons)
    // arguments:
    //      'input'  : plugin's target (JavaScript selector)
    //      'default': plugin's config (see class doc for details please)
    //      array([...])       : arguments sended to plugin (see class doc for details please)
    $form->addPlugin('nice-check', '#test-form', 'default', ['skin' => 'red']);
  4. Add the submit button:

    $form->addBtn('submit', 'submit-btn', 1, 'Send', 'class=btn btn-success');

    $form->addBtn('submit', 'submit-btn', 1, 'Send', 'class=btn btn-success');
    // this function adds a button to your form.
    
    // arguments:
    //      'submit'     : the html button type.
    //      'submit-btn' : the html "name" attribute
    //      'Send:'     : Button text content displayed on screen
    //      'class=btn btn-success': can be any html addributes, separated with commas and without quotes.
  5. Well done. Now the form is ready with an input and a submit button.

    Last step is to render it on page.We'll add 3 PHP blocks.

    1. Just before </head>:

      <?php $form->printIncludes('css'); ?>
    2. Anywhere between <body></body>: (at the place you want the form to be displayed)

      <?php
      if (isset($sent_message)) {
          echo $sent_message;
      }
      $form->render();
      ?>
    3. Just before </body>:

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

    // Following lines will include JavaScript plugin's css files if your form uses plugins.
    <?php $form->printIncludes('css'); ?>
    
    // following lines will render the form in your page, and display success / error message if form has been posted by user.
    <?php
    if (isset($sent_message)) {
        echo $sent_message;
    }
    $form->render();
    ?>
    
    // Following lines will include JavaScript plugin's js files if your form uses plugins.
    <?php $form->printIncludes('js'); ?>
  6. Refresh your test-form.php in your browser (http://localhost/my-project/test-form.php)

    your form should be displayed.

Validate the user's posted values and send emails

Add this PHP block just after include_once [...] . '/phpformbuilder/Form.php';:

if ($_SERVER["REQUEST_METHOD"] == "POST") {

    // create validator & auto-validate required fields
    $validator = Form::validate('test-form');

    // check for errors
    if ($validator->hasErrors()) {
        $_SESSION['errors']['test-form'] = $validator->getAllErrors();
    } else {
        $email_config = array(
            'sender_email'    => 'contact@my-site.com',
            'sender_name'     => 'PHP Form Builder',
            'recipient_email' => 'recipient-email@my-site.com',
            'subject'         => 'PHP Form Builder - Test form email',
            'filter_values'   => 'test-form'
        );
        $sent_message = Form::sendMail($email_config);
        Form::clear('test-form');
    }
}

Email sending may fail on your localhost, depending on your configuration.

It should work anyway on your production server.

// if form has been posted
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('test-form') === true) {

    // create a new validator object & auto-validate required fields
    $validator = Form::validate('test-form');

    // store errors in session if any
    if ($validator->hasErrors()) {
        $_SESSION['errors']['test-form'] = $validator->getAllErrors();
    } else {

        // all is ok, send email
        // PHP Form Builder will add all posted labels and values to your message,
        // no need to do anything manually.
        $email_config = array(
            'sender_email'    => 'contact@my-site.com',
            'sender_name'     => 'PHP Form Builder',
            'recipient_email' => 'recipient-email@my-site.com',
            'subject'         => 'PHP Form Builder - Test form email',
            // filter_values are posted values you don't want to include in your message. Separated with commas.
            'filter_values'   => 'test-form'
        );

        // send message
        $sent_message = Form::sendMail($email_config);

        // clear session values: next time your form is displayed it'll be emptied.
        Form::clear('test-form');
    }
}

Complete page code

<?php
use phpformbuilder\Form;
use phpformbuilder\Validator\Validator;
session_start();
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('test-form') === true) {

    // create validator & auto-validate required fields
    $validator = Form::validate('test-form');

    // check for errors
    if ($validator->hasErrors()) {
        $_SESSION['errors']['test-form'] = $validator->getAllErrors();
    } else {
        $email_config = array(
            'sender_email'    => 'contact@my-site.com',
            'sender_name'     => 'PHP Form Builder',
            'recipient_email' => 'recipient-email@my-site.com',
            'subject'         => 'PHP Form Builder - Test form email',
            // filter_values are posted values you don't want to include in your message. Separated with commas.
            'filter_values'   => 'test-form'
        );

        // send message
        $sent_message = Form::sendMail($email_config);
        Form::clear('test-form');
    }
}
$form = new Form('test-form', 'horizontal', 'novalidate');
$form->addInput('text', 'user-name', '', 'Name:', 'required, placeholder=Name');
$form->addRadio('is-all-ok', 'Yes', 1);
$form->addRadio('is-all-ok', 'No', 0);
$form->printRadioGroup('is-all-ok', 'Is all ok?', false, 'required');
$form->addPlugin('nice-check', '#test-form', 'default', ['skin' => 'red']);
$form->addBtn('submit', 'submit-btn', 1, 'Send', 'class=btn btn-success');
?>
<!DOCTYPE html>
<html>
<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>Test Form</title>

<!-- Bootstrap 5 CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<?php $form->printIncludes('css');?>
</head>
<body>
<h1>My first form</h1>
<?php
if (isset($sent_message)) {
    echo $sent_message;
}
$form->render();
?>
<!-- Bootstrap 5 JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<?php
    $form->printIncludes('js');
    $form->printJsCode();
?>
</body>
</html>