Re: [PHP] Form Variables not getting passed || Apache, MySql, Win2k Setup

2003-01-29 Thread Leif K-Brooks
Mind giving a code snippet?

Noah wrote:


Thanks for the pleasant acronym, Leif.

However, setting register_globals on or off makes no difference.  The
variables are still not getting evaluated

BTW works fine on my laptop (Apache, MySql, Linux)

--Noah

- Original Message -
From: Leif K-Brooks [EMAIL PROTECTED]
To: CF High [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, January 29, 2003 1:38 PM
Subject: Re: [PHP] Form Variables not getting passed || Apache, MySql, Win
2k Setup


 

RTFM!  Your problem is register_globals.

CF High wrote:

   

Hey all.

This driving me nuts:

  I've got Apache, MySql, and Windows 2000 running on my local machine.
In order to get passed php variables evaluated, whether via a url query
string, or through a form post, I have to use this syntax:

$_REQUEST[$my_passed_variable]

I have no such problem with our hosting company servers; i.e. I can
 

access
 

query_string and form posted variables as $my_passed_variable.

What is going on here? Is there something in php.ini that needs to be
adjusted?

Any help whatsoever here is much appreciated,

--Noah

--






 

--
The above message is encrypted with double rot13 encoding.  Any
   

unauthorized attempt to decrypt it will be prosecuted to the full extent of
the law.
 


   



 


--
The above message is encrypted with double rot13 encoding.  Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law.





Re: [PHP] Form Variables not getting passed || Apache, MySql, Win2k Setup

2003-01-29 Thread Philip Olson

One too many $'s in your code, use:

$_REQUEST['my_passed_variable']

This is how all arrays work, autoglobals are the same.
See also:

http://www.php.net/variables.external
http://www.php.net/variables.predefined

Regards,
Philip

On Wed, 29 Jan 2003, CF High wrote:

 Hey all.
 
 This driving me nuts:
 
 I've got Apache, MySql, and Windows 2000 running on my local machine.
 In order to get passed php variables evaluated, whether via a url query
 string, or through a form post, I have to use this syntax:
 
 $_REQUEST[$my_passed_variable]
 
 I have no such problem with our hosting company servers; i.e. I can access
 query_string and form posted variables as $my_passed_variable.
 
 What is going on here? Is there something in php.ini that needs to be
 adjusted?
 
 Any help whatsoever here is much appreciated,
 
 --Noah
 
 --
 
 
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] Form Variables not getting passed || Apache, MySql, Win2k Setup

2003-01-29 Thread Philip Olson

 You never answered if this was in a function or class 
 method. Is it? Did you say whether it was Apache 1 or 2?

Also, to check what the register_globals setting really
is, make a call to phpinfo() as it will tell you the
true setting.  Sometimes the wrong php.ini is edited 
or the web server wasn't restarted or .htaccess/httpd.conf
gets in the way or ... ...

Regards,
Philip


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php