[PHP] QUERY_STRING Variables and POST

2005-12-08 Thread Michael B Allen
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? Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] QUERY_STRING Variables and POST

2005-12-08 Thread Chris Shiflett
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? Yeah, $_GET. I know it seems a bit confusing, since the request method is POST, not GET, but it's a reference to how data is passed when the

Re: [PHP] QUERY_STRING Variables and POST

2005-12-08 Thread Michael Hulse
On Dec 8, 2005, at 2:46 PM, 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? Not sure if this script will help, but you can point

[PHP] QUERY_STRING from command line

2004-09-22 Thread Rajesh Batchu
Hi, I am working on a php script which is accessed as below http://10.10.10.10/pageone.php?hellohowareyou in the pageone.php i am accessing the variable $_SERVER[QUERY_STRING and i am getting the proper hellohowareyou as value. All these days i was accessing this over the browser. But now

Re: [PHP] QUERY_STRING from command line

2004-09-22 Thread raditha dissanayake
Rajesh Batchu wrote: Hi, I am working on a php script which is accessed as below http://10.10.10.10/pageone.php?hellohowareyou in the pageone.php i am accessing the variable $_SERVER[QUERY_STRING and i am getting the proper hellohowareyou as value. All these days i was accessing this over the

[PHP] PHP QUERY_STRING

2002-05-21 Thread Stavros Patiniotis
Hello, My web server hdd just crashed, and I have replaced and rebuilt it with a new drive. All of my websites have been transferred over the the new site from backup, and I am having a problem with PHP seeing GET variables. My searching says that I should look in the php.ini file, but cannot

Re: [PHP] PHP QUERY_STRING

2002-05-21 Thread Rasmus Lerdorf
register_globals On Tue, 21 May 2002, Stavros Patiniotis wrote: Hello, My web server hdd just crashed, and I have replaced and rebuilt it with a new drive. All of my websites have been transferred over the the new site from backup, and I am having a problem with PHP seeing GET variables.

Re: [PHP] PHP QUERY_STRING

2002-05-21 Thread Stavros Patiniotis
Hello, Great stuff! Thank you! Kind Regards, 0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0o0 escape net m a k i n g t h e n e t w o r k f o r y o u 465b South Road ph 8293 2526 KESWICK SA 5035

[PHP] $QUERY_STRING

2001-11-13 Thread Ernesto
Hi, I'm a newbie using Apache 1.3.22 and PHP 4.0.6 on Windows. I'm trying to access the $QUERY_STRING var, but it's empty even when I do have a query string. On one server (Win2K), it works ok. On the other server (WinXP) it's always empty. If I use index.php?s=1, $HTTP_GET_VARS['s'] is 1,