This code:
$_SESSION["signup"] = array_merge($_SESSION["signup"], $_POST);
Produces this warning:
"Warning: array_merge() [function.array-merge]: Argument #1 is not an array in ...."
Which in the end, none of the form data seems to get stored to $_SESSION["signup"] variable.
I'm about as newb to php as newb can be, and this is a site that I have inherited responsibilities for, not something I wrote. I know that the scripts were written for and used with PHP4, but my server (iis5) is currently using PHP5. I'm hoping that there is quick and simple answer to this, but I think I probably just need a better understanding of the $_SESSION variable.
Any insight, fix or link to point me in the right direction on what to read will be greatly appreciated. 🙂