in reply to Re: passing an array to a checkbox_group
in thread passing an array to a checkbox_group
Calling Code:$STable = 'tab001'; print $query->start_multipart_form("POST","printFields"); print $query->checkbox_group(-name=>'FieldNames', -value=>[ @array ]); $query->param( -name=>'TblMenu', -value=>$STable); print $query->submit('doWhat','Print Fields'); print $query->end_form;
$SFields returns the selected checkboxes$SFields = join(", ",$query->param('FieldNames')); $STab = $query->param('TblMenu');
but I don't know what it is?$STab = $query->param('FieldNames.TblMenu');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: passing an array to a checkbox_group
by khippy (Scribe) on Oct 11, 2001 at 15:03 UTC | |
by amulcahy (Acolyte) on Oct 11, 2001 at 15:14 UTC | |
by khippy (Scribe) on Oct 11, 2001 at 16:03 UTC | |
|
Re: Re: Re: passing an array to a checkbox_group
by guidomortonski (Sexton) on Oct 11, 2001 at 16:43 UTC | |
|
Re: Re: Re: passing an array to a checkbox_group
by thatguy (Parson) on Oct 11, 2001 at 16:45 UTC | |
by amulcahy (Acolyte) on Oct 11, 2001 at 17:47 UTC | |
by amulcahy (Acolyte) on Oct 11, 2001 at 18:55 UTC | |
|
Re: Re: Re: passing an array to a checkbox_group
by ralphie (Friar) on Oct 12, 2001 at 01:18 UTC |