Re: [PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Michael B Allen
Solved. My mistake. I was visiting the form with a URL that had QUERY_STRING parameters but when I submit the form the QUERY_STRING is not propagated. In my particular case I replaced the form tag with the following PHP: "; ?> Also, regarding my original question, I think parse_str is what I wan

Re: [PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Zack Bloom
use $_REQUEST['name'] to get value On 12/8/05, Michael B Allen <[EMAIL PROTECTED]> wrote: > > On Thu, 08 Dec 2005 17:56:14 -0500 > Roman Ivanov <[EMAIL PROTECTED]> wrote: > > > Michael B Allen wrote: > > > I'm using the POST method but I would also like to access QUERY_STRING > > > parameters. Is

Re: [PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Michael B Allen
On Thu, 08 Dec 2005 17:56:14 -0500 Roman Ivanov <[EMAIL PROTECTED]> wrote: > Michael B Allen wrote: > > I'm using the POST method but I would also like to access QUERY_STRING > > parameters. Is there a convienient global array for these? If not, > > what is the definitive method for accessing them