139 lines
5.9 KiB
PHP
Executable File
139 lines
5.9 KiB
PHP
Executable File
<?php
|
|
use phpformbuilder\Form;
|
|
use phpformbuilder\Validator\Validator;
|
|
use phpformbuilder\database\Mysql;
|
|
|
|
/* =============================================
|
|
start session and include form class
|
|
============================================= */
|
|
|
|
session_start();
|
|
include_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/Form.php';
|
|
|
|
/* =============================================
|
|
validation if posted
|
|
============================================= */
|
|
|
|
if ($_SERVER["REQUEST_METHOD"] == "POST" && Form::testToken('newsletter-suscribe-form') === true) {
|
|
// create validator & auto-validate required fields
|
|
$validator = Form::validate('newsletter-suscribe-form');
|
|
|
|
// additional validation
|
|
$validator->email()->validate('user-email');
|
|
|
|
// check for errors
|
|
if ($validator->hasErrors()) {
|
|
$_SESSION['errors']['newsletter-suscribe-form'] = $validator->getAllErrors();
|
|
} else {
|
|
/* Database insert (disabled for demo) */
|
|
|
|
/*require_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/database/db-connect.php';
|
|
require_once rtrim($_SERVER['DOCUMENT_ROOT'], DIRECTORY_SEPARATOR) . '/phpformbuilder/database/Mysql.php';
|
|
|
|
$db = new Mysql();
|
|
$insert['ID'] = Mysql::SQLValue('');
|
|
$insert['user_name'] = Mysql::SQLValue($_POST['user-name']);
|
|
$insert['user_email'] = Mysql::SQLValue($_POST['user-email']);
|
|
if (!$db->insertRow('YOUR_TABLE', $insert)) {
|
|
$user_message = '<p class="alert alert-danger">' . $db->error() . '<br>' . $db->getLastSql() . '</p>' . "\n";
|
|
} else {
|
|
$user_message = '<p class="alert alert-success">Thanks for suscribe !</p>' . "\n";
|
|
Form::clear('newsletter-suscribe-form');
|
|
}*/
|
|
Form::clear('newsletter-suscribe-form'); // just for demo ; delete this line if real database recording.
|
|
$user_message = '<p class="alert alert-success">Thanks for suscribe !</p>' . "\n"; // just for demo ; delete this line if real database recording.
|
|
}
|
|
}
|
|
|
|
/* ==================================================
|
|
The Form
|
|
================================================== */
|
|
|
|
$form = new Form('newsletter-suscribe-form', 'vertical', 'novalidate', 'material');
|
|
// $form->setMode('development');
|
|
|
|
// materialize plugin
|
|
$form->addPlugin('materialize', '#newsletter-suscribe-form');
|
|
|
|
$form->startFieldset('Newsletter Suscribe Form');
|
|
$form->addHtml('<p class="text-success text-center mt-4"><em>Subscribe to our Newsletter and receive exclusive offers, updates and news</em></p>');
|
|
$form->addIcon('user-name', '<i class="fa fa-lg fa-user" aria-hidden="true"></i>', 'before');
|
|
$form->addInput('text', 'user-name', '', '', 'placeholder=Your Name, required');
|
|
$form->addIcon('user-email', '<i class="fa fa-lg fa-envelope" aria-hidden="true"></i>', 'before');
|
|
$form->addInput('email', 'user-email', '', '', 'placeholder=Your E-mail, required');
|
|
$form->addBtn('submit', 'submit-btn', 1, 'Suscribe <i class="fa fa-arrow-right fa-fw"></i>', 'class=btn btn-primary btn-block');
|
|
$form->endFieldset();
|
|
|
|
// jQuery validation
|
|
$form->addPlugin('formvalidation', '#newsletter-suscribe-form');
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Material Design Bootstrap 4 Newsletter Suscribe Form - How to create PHP forms easily</title>
|
|
<meta name="description" content="Material Design Bootstrap 4 Form Generator - how to create a Newsletter Suscribe Form with Php Form Builder Class">
|
|
<link rel="canonical" href="https://www.phpformbuilder.pro/templates/material-forms/newsletter-suscribe-form.php" />
|
|
|
|
<!-- Bootstrap 4 CSS -->
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
|
|
|
<!-- Font awesome icons -->
|
|
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-head.php';
|
|
?>
|
|
<?php $form->printIncludes('css'); ?>
|
|
</head>
|
|
<body>
|
|
<h1 class="text-center">Php Form Builder - Material Design Bootstrap 4 Newsletter Form<br><small>Suscribe to our Newsletter</small></h1>
|
|
<div class="container">
|
|
<?php
|
|
// information for users - remove this in your forms
|
|
include_once '../assets/material-bootstrap-forms-notice.php';
|
|
?>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 col-lg-6">
|
|
<?php
|
|
if (isset($user_message)) {
|
|
echo $user_message;
|
|
}
|
|
$form->render();
|
|
?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
|
|
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
|
|
|
<!-- Bootstrap 4 JavaScript -->
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
|
|
<?php
|
|
$form->printIncludes('js');
|
|
$form->printJsCode();
|
|
?>
|
|
<?php
|
|
|
|
/* =============================================
|
|
CODE PREVIEW - REMOVE THIS IN YOUR FORMS
|
|
============================================= */
|
|
|
|
include_once '../assets/code-preview-body.php';
|
|
?>
|
|
</body>
|
|
</html>
|