1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| $form_investisseur = new Zebra_Form('form_investisseur');
$form_investisseur->language("francais");
$form_investisseur->add('label','label_rue', 'rue', 'Rue');
$num_gsm = $form_investisseur->add('text', 'rue', null, array(
'maxlength' => 80
));
$form_investisseur->add('label','label_numero', 'numero', 'N°');
$num_gsm = $form_investisseur->add('text', 'numero', null, array(
'maxlength' => 10
));
$form_investisseur->add('label','label_boite', 'boite', 'Boîte');
$num_gsm = $form_investisseur->add('text', 'boite', null, array(
'maxlength' => 10
)); |
Partager