Re: [PHP] form hidden value

2011-08-08 Thread Daniel P. Brown
On Mon, Aug 8, 2011 at 17:23, Chris Stinemetz chrisstinem...@gmail.com wrote: input type=hidden name=id value=?php echo '$id[]';? You should drop the quotes around the $id[] array, and also figure out how you want to extract the element from the array. For example: ?php echo

RE: [PHP] form hidden value

2011-08-08 Thread Dajka Tamas
First: use firebug, or something like that, and check what's get written in the page's source! Second: dump $_POST/$_GET, and check, whether id is set at all Is your input field between the form and /form tags? Cheers, Tamas -Original Message- From: Chris Stinemetz