Re: [PHP-DB] Webpage response to selection & $_POST

2004-08-30 Thread Ng Hwee Hwee
hi... to what i know, the $_POST variables get passed to apage.php only... if you have a redirect to another page inside apage.php, the $_POST variables will not be passed to the next page. you may need to register your $_POST as session variables inside apage.php first or you append your $_POST v

Re: [PHP-DB] Webpage response to selection & $_POST

2004-08-30 Thread Philip Thompson
Peter, On Aug 30, 2004, at 12:49 PM, Peter Ellis wrote: It doesn't look like you're actually retrieving data using the $_POSTed data from that code snippet. Are you doing anything like $j = $_POST ['j']; in order to get the value of j before you retrieve your array data? Or are you allowing PHP t

RE: [PHP-DB] Webpage response to selection & $_POST

2004-08-29 Thread Peter Lovatt
Hi you need to check for $_POST["user1"], $_POST["user2"] etc - is that what you are doing? Your other variables are done as an array - $firstName[$j] etc, should your check box be echo ' ' . "\n"; (note the []) Otherwise try vardump($_POST) to see exactly what is being returned. If