Re: [PHP-INST] Passing variables via Form

2002-07-09 Thread MikeParton
: Tuesday, July 09, 2002 9:24 AM Subject: RE: [PHP-INST] Passing variables via Form > Be sure register_globals is set to "On" in your php.ini. > > --- > Fabio Moraes > [EMAIL PROTECTED] > +55 21 3088 9183 > > -Original Message- > From: Hoofe, Dennis [

Re: [PHP-INST] Passing variables via Form

2002-07-09 Thread Chris Hewitt
Dennis, Its probably that you are used to register_globals being on in php.ini. In recent versions it is off by default. Either change the setting or use $_GET["varname"] or $_POST["varname"] depending on whether the data is GET or POST data. HTH Chris Hoofe, Dennis wrote: >Hi, > >I have th

RE: [PHP-INST] Passing variables via Form

2002-07-09 Thread Moraes, Fabio
Be sure register_globals is set to "On" in your php.ini. --- Fabio Moraes [EMAIL PROTECTED] +55 21 3088 9183 -Original Message- From: Hoofe, Dennis [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 8:46 AM To: '[EMAIL PROTECTED]' Subject: [PHP-INST] Passin

[PHP-INST] Passing variables via Form

2002-07-09 Thread Hoofe, Dennis
Hi, I have the following problem: First file: test.php Second: test2.php Via form I pass a variable from File 1 to File 2. Echoing the variable (echo $variableIset;) does not work, although the variable seems to be properly passed in the URL. Has this something to do with track_vars or something