Simple question -- just can't figure it out yet.
I have a form where I have a drop-down, multiple select list. The selections go into an array which I set up in the form as name=productid[] ....
I want to pass this on through several html pages (I'm programming a "wizard").
If I have the following code snipet on my first page:
<form method="post" action="page2.php3">
<input name="productid[]">
and submit this, on page 2 I can determine with $HTTP_POST_VARS that productid=Array and I can access the values of the array on page 2.
Now I want to setup a hidden variable on page 2 to pass the array values to page 3. How do I do this so that the array values for productid are available on page 3?