RejestrForm 4


~/tmp/ZF/fnext/RejestrForm-4.php.html  1 <?php  2 class Form_RejestrForm extends Zend_Form{  3     public function __construct($options = null) {  4         parent::__construct($options);  5     }  6     public function init(){  7         $this->setMethod('post');  8           9         // Wprowadzanie hasła 10         $this->addElement('password', 'haslo', array( 11             'label'      => 'Podaj hasło:', 12             'required'   => true, 13             'size' => '20', 14             'filters'    => array('StringTrim','StripTags'), 15             'validators' => array('NotEmpty',) 16         )); 17         // Wprowadzenie adresu 18         $this->addElement('text', 'email', array( 19             'label'      => 'Podaj e-mail:', 20             'required'   => true, 21             'size' => '20', 22             'filters'    => array('StringTrim'), 23             'validators' => array('EmailAddress',) 24         )); 25 26         // pole tekstowe 27         $this->addElement('textarea', 'comment', array( 28             'label'      => 'Wpisz komentarz:', 29             'required'   => true, 30             'rows' => '3', 31             'cols' => '50', 32             'validators' => array( 33              array('validator' => 'StringLength', 34                 'options' => array(0, 55))), 35             'filters'    => array('StripTags')   36          )); 37 38         // add the submit button 39         $this->addElement('submit', 'submit', array( 40             'label'    => 'wybierz', 41         )); 42     } 43 } 44          45 ?>

Wyszukiwarka

Podobne podstrony:
Rejestry
Klucze Rejestru Windows
Przydatne wpisy do rejestru na komputerach klienta uzupełnie
29 w sprawie wzorów i sposobu prowadzenia centralnych rejestrów osób
rejestr8bitowy
SPOSOBY AUTOMATYCZNYCH MODYFIKACJI REJESTRU
JAK Porady i wskazówki dotyczące rejestru w systemie Win98 część 5
rejestr
Symfonia Start Handel Rejestracja I Aktywacja
rejestr szkolen
rejestracja
rejestr lotnisk cywilnych
Symfonia Srodki Trwale Rejestracja I Aktywacja
Akt stanu cywilnego, ksiegi stanu cywilnego, akta zbiorowe rejestracji stanu cywilnego, odpisy aktow

więcej podobnych podstron