daily pastebin goal
3%
SHARE
TWEET

Untitled

a guest May 27th, 2012 13 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script src="netteForms.js"></script>
  2. <style> .required label { color: maroon }
  3. </style>
  4. <?
  5. require 'Nette/loader.php';
  6. use Nette\Forms\Form;
  7. $form = new Form;
  8. $form->addText('name', 'Jméno:')
  9.   ->setRequired('Zadejte prosím jméno');
  10.  
  11. $form->addText('age', 'Věk:')
  12.     ->addRule(Form::INTEGER, 'Věk musí být číslo')
  13.     ->addRule(Form::RANGE, 'Věk musí být od 18 do 120', array(18, 120));
  14.        
  15. $form->addPassword('password', 'Heslo:');
  16. $form->addSubmit('send', 'Registrovat');
  17. echo $form; // vykreslí formulář
  18. if ($form->isSuccess()) {
  19.     echo 'Formulář byl správně vyplněn a odeslán';
  20.     $values = $form->getValues();
  21.     dump($values);
  22. }
  23. ?>
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top