Standalone Nette Forms example [cs]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
if (@!include __DIR__ . '/../vendor/autoload.php') { | |
die('Nainstalujte balíčky pomocí `composer require nette/forms`'); | |
} | |
use Nette\Forms\Form; | |
$form = new Form; | |
$form->addText('name', 'Jméno:') | |
->setRequired(); | |
$form->addPassword('password', 'Heslo:') | |
->setRequired(); | |
$form->addSubmit('send', 'Registrovat'); | |
if ($form->isSuccess()) { | |
echo 'Formulář byl správně vyplněn a odeslán'; | |
$data = $form->getValues(); | |
var_dump($data); | |
// $data->name obsahuje jméno | |
// $data->password obsahuje heslo | |
// zpracujeme data a přesměrujeme na jinou stránku | |
} | |
echo ' | |
<!doctype html> | |
<meta charset="utf-8"> | |
<script src="https://nette.github.io/resources/js/3/netteForms.js"></script> | |
'; | |
$form->render(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment