[PHP-INST] Re: not reading variables

2002-05-14 Thread Paul Shone
Hi Geoff, In the php.ini file there is a line which probably reads: register_globals=Off if you change that to: register_globals=On See if that helps :) Paul "Geoff" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Im running php 4.0.2 on winxp pro and t

[PHP-INST] Re: not reading variables

2002-05-14 Thread Jim Thome
Read the press release on PHP 4.2.X, specifically the section on external variables. http://us2.php.net/release_4_2_1.php --Jim >>> "Paul Shone" <[EMAIL PROTECTED]> 05/13/02 11:03PM >>> Hi, I am also experiencing problems regarding variables which don't seem to be getting parsed correctly to

Re: [PHP-INST] Re: not reading variables

2002-05-14 Thread Rasmus Lerdorf
Turn on register_globals in your php.ini file On Tue, 14 May 2002, Paul Shone wrote: > Hi, > I am also experiencing problems regarding variables which don't seem to be > getting parsed correctly to the corresponding page. > I'm running Apache 1.3.24 and (I have tried version 2.0.35 as well), and

[PHP-INST] Re: not reading variables

2002-05-14 Thread Paul Shone
Hi, I am also experiencing problems regarding variables which don't seem to be getting parsed correctly to the corresponding page. I'm running Apache 1.3.24 and (I have tried version 2.0.35 as well), and PHP 4.2.0. I get the same thing happening that Graham said - when I ask for www.apage.com?var1

RE: [PHP-INST] Re: not reading variables

2002-05-02 Thread Jim Thome
ECTED]; [EMAIL PROTECTED] Subject: [PHP-INST] Re: not reading variables With PHP 4.2.0, the register_global directive is off by default. Please read the section on external variables -> http://www.php.net/release_4_2_0.php In general, automatically creating form fields into variables is a

RE: [PHP-INST] Re: not reading variables

2002-05-01 Thread Dr CHEUNG Ngai Tseung
PROTECTED] Subject: [PHP-INST] Re: not reading variables With PHP 4.2.0, the register_global directive is off by default. Please read the section on external variables -> http://www.php.net/release_4_2_0.php In general, automatically creating form fields into variables is a bad idea, and PHP 4.2 d

[PHP-INST] Re: not reading variables

2002-05-01 Thread Jim Thome
With PHP 4.2.0, the register_global directive is off by default. Please read the section on external variables -> http://www.php.net/release_4_2_0.php In general, automatically creating form fields into variables is a bad idea, and PHP 4.2 does not do this by default. --Jim >>> "Graham Nic

[PHP-INST] Re: not reading variables

2002-05-01 Thread Graham Nichols
"Geoff" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Im running php 4.0.2 on winxp pro and the latest apache (1.3.x) and have > followed all of the installation instructions on php.net, and the only > problem i have encountered so far is the my variables arn