PHP code example of jarzon / forms
1. Go to this page and download the library: Download jarzon/forms 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/ */
jarzon / forms example snippets
$form = new Jarzon\Form($_POST);
// Create your form
$form
->text('name')
->min(2)
->max(100)
->
<?=$form('form')->html
// On submit validate the form values
if($form->submitted()) {
try {
// Does the validation based on the inputs types, min/max, e']}";
}
}
catch (\Jarzon\Form\ValidationException $e) {
// ->validation() throw a custom Exception if there is an invalid value
echo "Error: {$e->getMessage()}";
}
}