Advertisement
Northys

Untitled

Jul 26th, 2014
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. $form->addText('name', 'Name:');
  2. $form->addText('age', 'Age:');
  3.  
  4. $form->setDefaults(array(
  5.     'name' => 'John',
  6.     'age' => '33'
  7. ));
  8.  
  9. // pokud budou názvy prvků == názvy sloupcům v tabulce, tak by mělo stačit použít http://api.nette.org/2.2.2/source-Database.Table.Selection.php.html#249-255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement