[PHP] problem passing variable between forms.

2003-09-23 Thread Angelo Zanetti
:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 4:00 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] problem passing variable between forms. - Original Message - From: Angelo Zanetti [EMAIL PROTECTED] I have a form in which I have a table with dynamic checkboxes

Re: [PHP] problem passing variable between forms.

2003-09-23 Thread CPT John W. Holmes
From: Angelo Zanetti [EMAIL PROTECTED] therefore I can register this variable on the same page as the checkboxes? So therefore is it posssible for php to determine which checkboxes have been selected (or are the ones that are selected added to the array)? The ones that are selected are added

[PHP] problem passing variable between forms.

2003-08-26 Thread Angelo Zanetti
HI all I have a form in which I have a table with dynamic checkboxes, they are in a checkbox array ( name = chk[]...), I pass this variable to the next page using POST I receive the variable and use it, no problem, but then when I try to pass it to the next form in the URL (using an A HREF: a

Re: [PHP] problem passing variable between forms.

2003-08-26 Thread CPT John W. Holmes
- Original Message - From: Angelo Zanetti [EMAIL PROTECTED] I have a form in which I have a table with dynamic checkboxes, they are in a checkbox array ( name = chk[]...), I pass this variable to the next page using POST I receive the variable and use it, no problem, but then when I

Re: [PHP] problem passing variable between forms.

2003-08-26 Thread Lowell Allen
I have a form in which I have a table with dynamic checkboxes, they are in a checkbox array ( name = chk[]...), I pass this variable to the next page using POST I receive the variable and use it, no problem, but then when I try to pass it to the next form in the URL (using an A HREF: a

Re: [PHP] problem passing variable between forms.

2003-08-26 Thread Chris Shiflett
--- Angelo Zanetti [EMAIL PROTECTED] wrote: I pass this variable to the next page using POST I receive the variable and use it, no problem, but then when I try to pass it to the next form in the URL (using an A HREF: a href='confirmrequest.php?requested= . $chk . ' ) ... My