i have an array that i need to pass to another page and store in a table, so i used serialize to try and accomplish this.... here is my code to do this
$ordered = serialize($_POST['ordered']);
when i do an echo "$ordered"; what comes up is: s:5:"Array";
isnt it supposed to be a list of things stored in the array? what am i doing wrong?