Re: Predefined Variables

2009-08-02 Thread Fred Atkinson
On Sun, 02 Aug 2009 08:11:22 -0700, Scott David Daniels wrote: >Piet van Oostrum wrote: >>> Scott David Daniels (SDD) wrote: >>> SDD> Stephen Cuppett (should have written in this order): > "Fred Atkinson" wrote ... >> Is there a pre-defined variable that returns the GET line...

Re: Predefined Variables

2009-08-02 Thread Scott David Daniels
Piet van Oostrum wrote: Scott David Daniels (SDD) wrote: SDD> Stephen Cuppett (should have written in this order): "Fred Atkinson" wrote ... Is there a pre-defined variable that returns the GET line... os.environment('QUERY_STRING') SDD> Maybe you mean: SDD> os.environ['USER'] Let's t

Re: Predefined Variables

2009-08-01 Thread Fred Atkinson
On Sat, 01 Aug 2009 18:56:33 -0700, Fred Atkinson wrote: >On Thu, 23 Jul 2009 15:28:50 +0200, "Diez B. Roggisch" > 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 var

Re: Predefined Variables

2009-08-01 Thread Fred Atkinson
On Thu, 23 Jul 2009 15:28:50 +0200, "Diez B. Roggisch" 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 don't return

Re: Predefined Variables

2009-07-24 Thread Piet van Oostrum
> Scott David Daniels (SDD) wrote: >SDD> Stephen Cuppett (should have written in this order): >>> "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 (rathe

Re: Predefined Variables

2009-07-24 Thread Scott David Daniels
Stephen Cuppett (should have written in this order): "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)? > os.environment('QUERY_STRING') Ma

Re: Predefined Variables

2009-07-24 Thread Stephen Cuppett
$_SERVER['QUERY_STRING']; (if it's PHP) "Fred Atkinson" 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 individual

Re: Predefined Variables

2009-07-24 Thread Stephen Cuppett
os.environment('QUERY_STRING') "Fred Atkinson" 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 individual variables

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 -- http://mail.python.org/mailman/l

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