Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 13, 2020 11:35
Show Gist options
  • Save ashour/e652749d73c6bca4a8c239ea1a8c51dd to your computer and use it in GitHub Desktop.
Save ashour/e652749d73c6bca4a8c239ea1a8c51dd to your computer and use it in GitHub Desktop.
<?php
require_once 'functions.php';
require_once 'validation/rules.php';
require_once 'validation/Validator.php';
$validator = Validator::make($rules, $_POST);
if ($validator->isAllValid()) {
header('Location: /thank-you.php?lang=' . lang());
die();
} else {
$errors = $validator->errors();
require_once 'index.php';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment