Re: [PHP] Re: missing $_GET

2005-06-05 Thread Richard Lynch
On Sun, June 5, 2005 2:45 am, Ric Manalac said: > What PHP version is known to cause this type of problem? Does anyone > know what specific configuration setting causes the $_GET to not catch > values passed through the querystring? I believe that in ALL PHP versions, if G is missing from that GPC

Re: [PHP] Re: missing $_GET

2005-06-05 Thread Chris Shiflett
Ric Manalac wrote: What PHP version is known to cause this type of problem? Does anyone know what specific configuration setting causes the $_GET to not catch values passed through the querystring? Well, $_GET hasn't always been around, so that's why the version can matter. Of course, this can

[PHP] Re: missing $_GET

2005-06-05 Thread Ric Manalac
What PHP version is known to cause this type of problem? Does anyone know what specific configuration setting causes the $_GET to not catch values passed through the querystring? My hosting company's PHP version is 4.3.4. Below are some info from phpinfo(): register_globals is set to On Configur

[PHP] Re: missing $_GET

2005-06-04 Thread JamesBenson
Possibly the PHP version your using, try looking at the PHP manual and also getting your PHP version by placing into a file and running it in your browser, see this document for other methods:- http://php.net/manual/en/reserved.variables.php#reserved.variables.get Ric Manalac wrote: Hell