Re: [PHP] pass variable to PHP

2001-04-03 Thread Plutarck
Yup, as Chris said it's register.globals that's the entry in your php.ini file. In my php.ini it's on line 200 (without wordwrap), and it will probably look like: register_globals = Off ; Whether or not to register the EGPCS variables as global In yours. Change the value to On and you should b

Re: [PHP] pass variable to PHP

2001-04-03 Thread HK Woo
Hi, Plutarck Thank You for your help. I would like to know how to turn on the feature to let PHP to separate the variable by GET/POST Thank You! HK Woo ""Plutarck"" <[EMAIL PROTECTED]> wrote in message 9ae7sf$f96$[EMAIL PROTECTED]">news:9ae7sf$f96$[EMAIL PROTECTED]... > Try using a print_r($HT

Re: [PHP] pass variable to PHP

2001-04-03 Thread Plutarck
Try using a print_r($HTTP_GET_VARS) and see what comes up. It could be that PHP has been set not to turn GET/POST variables into seperate values. If so you'll need to use: echo $HTTP_GET_VARS[testing]; -- Plutarck Should be working on something... ...but forgot what it was. ""HK Woo"" <[EM

[PHP] pass variable to PHP

2001-04-03 Thread HK Woo
Hi, I have written a html which contains a form and then I use a "GET" method to pass a variable to PHP program with http://xxx.xxx.xxx.xxx/test.php?testing=testing. However, I can't get the variable testing by using "echo $testing". I don't know what is the problem. Thank You! HK Woo -- P