Re: Predefined Variables

2009-08-02 Thread Scott David Daniels
Piet van Oostrum wrote: Scott David Daniels scott.dani...@acm.org (SDD) wrote: SDD Stephen Cuppett (should have written in this order): Fred Atkinson fatkin...@mishmash.com wrote ... Is there a pre-defined variable that returns the GET line... os.environment('QUERY_STRING') SDD Maybe you

Re: Predefined Variables

2009-08-02 Thread Fred Atkinson
On Sun, 02 Aug 2009 08:11:22 -0700, Scott David Daniels scott.dani...@acm.org wrote: Piet van Oostrum wrote: Scott David Daniels scott.dani...@acm.org (SDD) wrote: SDD Stephen Cuppett (should have written in this order): Fred Atkinson fatkin...@mishmash.com wrote ... Is there a pre-defined

Re: Predefined Variables

2009-08-01 Thread Fred Atkinson
On Thu, 23 Jul 2009 15:28:50 +0200, Diez B. Roggisch de...@nospam.web.de wrote: Fred Atkinson wrote: Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable (rather than individual variables)? Variables

Re: Predefined Variables

2009-08-01 Thread Fred Atkinson
On Sat, 01 Aug 2009 18:56:33 -0700, Fred Atkinson fatkin...@mishmash.com wrote: On Thu, 23 Jul 2009 15:28:50 +0200, Diez B. Roggisch de...@nospam.web.de wrote: Fred Atkinson wrote: Is there a pre-defined variable that returns the GET line

Predefined Variables

2009-07-24 Thread Fred Atkinson
Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable (rather than individual variables)? Regards, Fred --

Re: Predefined Variables

2009-07-24 Thread Stephen Cuppett
os.environment('QUERY_STRING') Fred Atkinson fatkin...@mishmash.com wrote in message news:p2qg65d0t4kki1sh0t3v6ileamhkvl9...@4ax.com... Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable (rather than

Re: Predefined Variables

2009-07-24 Thread Stephen Cuppett
$_SERVER['QUERY_STRING']; (if it's PHP) Fred Atkinson fatkin...@mishmash.com wrote in message news:p2qg65d0t4kki1sh0t3v6ileamhkvl9...@4ax.com... Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable

Re: Predefined Variables

2009-07-24 Thread Scott David Daniels
Stephen Cuppett (should have written in this order): Fred Atkinson fatkin...@mishmash.com wrote ... Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable (rather than individual variables)?

Re: Predefined Variables

2009-07-24 Thread Piet van Oostrum
Scott David Daniels scott.dani...@acm.org (SDD) wrote: SDD Stephen Cuppett (should have written in this order): Fred Atkinson fatkin...@mishmash.com wrote ... Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single

Re: Predefined Variables

2009-07-23 Thread Diez B. Roggisch
Fred Atkinson wrote: Is there a pre-defined variable that returns the GET line (http://www.php.net/index.php?everythingafterthequestionmark) as a single variable (rather than individual variables)? Variables don't return things. Functions do. And additionally the answer depends on what and