the problem is that the serialize isnt storing the array as a series of strings, but rather its still storing it as an array.... so when i do the following code:
$ordered = serialize($_POST['ordered']);
$total = $_POST['total'];
echo "$ordered <br>";
$test = unserialize($ordered);
echo "$test";
i get the following:
s:5:"Array";
Array
the serialize isnt storing the array properly, i just cannot figure out why... does the table record have to be of any certain type (varchar, text etc) to be able to store serialized arrays properly?