RE: [PHP] Fetching the values from previous page

2002-02-26 Thread Ford, Mike [LSS]
-Original Message- From: Steven Walker [mailto:[EMAIL PROTECTED]] Sent: 25 February 2002 18:04 There are global variables that serve this purpose. You must have register_globals turned on: Actually, no -- that's the wrong way round. The associative arrays are always there --

[PHP] Fetching the values from previous page

2002-02-25 Thread Batara Kesuma
Hi all, I have a page that post a lot of variables to the next page. It looks like: form action=next_page.php input type=text name=f_text1 input type=text name=f_text2 select name=f_multiple1[] multiple size=6 option value=1one option value=2two option value=3three /select input type=submit

Re: [PHP] Fetching the values from previous page

2002-02-25 Thread Steven Walker
Dear Batara, There are global variables that serve this purpose. You must have register_globals turned on: http://www.php.net/manual/en/language.variables.predefined.php $_POST An associative array of variables passed to the current script via the HTTP POST method. Automatically global in any

Re: [PHP] Fetching the values from previous page

2002-02-25 Thread Batara Kesuma
On Mon, 25 Feb 2002 10:04:07 -0800 Steven Walker [EMAIL PROTECTED] wrote: Dear Batara, There are global variables that serve this purpose. You must have register_globals turned on: http://www.php.net/manual/en/language.variables.predefined.php $_POST An associative array of variables