Or maybe I do...
$array= serialize($array);
echo $array; //this works
echo "<input type='hidden' name='$array' value='$array>";
//now its gone
Any ideas?
looks like you're missing a single quote after the value='$array
...you may also want to do the <font color=blue>addslashes()</font> and <font color=blue>urlencode()</font> thing on your sereailzed string if you are outputting it to a web page, since we don't know what characters will end up in the string...
-- Rich