Re: [PHP] checkbox validation

2001-04-24 Thread Keyur Kalaria
Hi jacky, put an empty square bracket after the variable name as follows: assuming that your above statement is in a loop we will have following structure: * etc... now when you submit the form, an array named id[ ] wi

Re: [PHP] checkbox validation

2001-04-18 Thread Robert Vetter
Jacky wrote: > > Hi all > I have a form with the checkbox like this > > $query="select id from foo"; > $result=($query,$con); > while ($row = mysql_fetch_array($result)) > { > > } > submit button and stuffs here... > One possibility: Add a hidden field in the form and write al

RE: [PHP] checkbox validation

2001-04-18 Thread Matt Williams
> After I submit to next page, at next page, how do I check which > check box is checked? > like this? > > if ($id=="on") { > do something > }else{ > do something > } Hi try this assuming you have no toher check boxes called $id if(isset($id)) { do something }else{ do other } M@ -- P