Page 1
$string = serialize($array);
<form name='form' method='post' action='$PHP_SELF'>
<input type='hidden' name=newstring value=$compact>
<input type='submit' name='reset' value='Try Again'> <input type='submit' name='Submit2' value='Save and Continue >>'>
</form>
echo $newstring; //this will echo the serialized data
$unpacked = unserialize($taylor);
echo $unpacked; //this gives me NOTHING not even "array".
Any ideas?