RE: [PHP-DB] Re: Need help with delete and modify functions on a form.

2005-10-18 Thread Linda H
>echo $_POST["check"][2]; >?> 2) the name/value pair will only be POSTed if it's checked, so that would only work if the first two were checked. Some people like to pair all their checkboxes with a hidden of the same name, the hiddens value will be sent if the checkbox isn't checked. The fol

RE: [PHP-DB] Re: Need help with delete and modify functions on a form.

2005-10-18 Thread Norland, Martin
>-Original Message- >From: Arie Nugraha [mailto:[EMAIL PROTECTED] > >You can also use an array : > > > Some Value 1 > Some Value 2 > Some Value 3 > > >to get the the third value from the form you can do like this : > >echo $_POST["check"][2]; >?> Good basic examples, two notes though - 1)