PHP code example of nikitakiselev / lpforms

1. Go to this page and download the library: Download nikitakiselev/lpforms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nikitakiselev / lpforms example snippets



default_timezone_set('Europe/Moscow');

$post = $_POST;
$formId = isset($post['form_id']) ? $post['form_id'] : null;

use Nikitakiselev\LpForms\Form;
use Nikitakiselev\LpForms\Mailer;
use Nikitakiselev\LpForms\FormHandler;

/**
 * Settings
 */
$siteName = 'Your site name';
$mailFrom = ['[email protected]', $siteName];
$mailTo = '[email protected]';

/**
 * Contact form
 */
$contactFormMailer = new Mailer($mailFrom, $mailTo);
$contactFormMailer->setSubject('New request from ' . $siteName);
$contactForm = new Form('contact', $post, $contactFormMailer);
$contactForm
    ->addField('email', ['

|- bower_components
|   |- ajax-forms
|      |- AjaxForm.js
|
|- emails
|   |- contact_template.tpl.php
|
|- form-handler.php
|- index.html