RE: [PHP] Passing arrays from page to page

2001-04-25 Thread ..s.c.o.t.t.. [gts]
well, one idea is to serialize the array and put into a HIDDEN text field to be submitted with the FORM. or, with no form, try this: "doc.php?myarray=". htmlentities(serialize($array)); > -Original Message- > From: Clif [mailto:[EMAIL PROTECTED]] > Subject: [PHP]

[PHP] Passing arrays from page to page

2001-04-25 Thread Clif
I'm trying pass an array from one page to another. Page 1 is a form. Page 2 has the data sent by Page 1 available in $HTTP_POST_VARS. This is where I'm stuck: Page three needs access to those same variables in $HTTP_POST_VARS. Any help? -- PHP General Mailing List (http://www.php.net/) To uns