HackTack
Joined: 20 May 2008 Posts: 1
|
Posted: Tue May 20, 2008 7:36 am Post subject: HTML QuickForm checkboxen |
|
|
my data from a check box one store in such a way:
| Code: |
a:2: { s:2:"BV";s:1:"1";s:3:"gVv";s:1:"1";}
a:2: { s:2:"HB";s:1:"1";s:2:"VM";s:1:"1";}
|
How can I read these back?
The Form
| Code: |
$typ1[] = &HTML_QuickForm::createElement('checkbox', 'B', null, 'B');
$typ1[] = &HTML_QuickForm::createElement('checkbox', 'BV', null, 'BV');
$typ1[] = &HTML_QuickForm::createElement('checkbox', 'gVv', null, 'gVv');
$typ1[] = &HTML_QuickForm::createElement('checkbox', 'FAv', null, 'FAv');
$typ1[] = &HTML_QuickForm::createElement('checkbox', 'Mv', null, 'Mv');
$this->addGroup($typ1, 'typ1','typ?', '<br>');
|
|
|