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

[PHP] Re: QUERY_STRING Variables and POST

2005-12-08 Thread Roman Ivanov
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? $_GET $_REQUEST + read manual -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Re: $QUERY_STRING

2001-11-13 Thread John Steele
Hi Ernesto, Try taking a look at the HTTP_SERVER_VARS array: test.php?1 HTTP_SERVER_VARS["argc"] = 1 HTTP_SERVER_VARS["argv"] = array([0] => test) XPerience the new windows (scary!) :) John > >Nop. getenv("QUERY_STRING") also returns an empty string. >The crazy thing is that getenv retur

Re: [PHP] Re: $QUERY_STRING

2001-11-13 Thread Ernesto
Nop. getenv("QUERY_STRING") also returns an empty string. The crazy thing is that getenv returns an empty string instead of FALSE. Anyway, if I do "index.php?a=1", I get HTTP_GET_VARS['a']==1, but $QUERY_STRING is still empty :( dav wrote: > Try getenv() function to import the query string fr

[PHP] Re: $QUERY_STRING

2001-11-13 Thread dav
Try getenv() function to import the query string from apache ambient. This is not a bug, maybe the index.php?1 isn't standard at all. "Ernesto" <[EMAIL PROTECTED]> ha scritto nel messaggio [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi, > > I'm a newbie using Apache 1.3.22 and PHP 4.0.6 on Wi