Ok, pardon me if I screw this up, this is my first post here.
I'm trying to pass an associative array to the next page though $_POST.
<?
$save_array = array(
first_name=>$first_name,
last_name=>$last_name);
?>
.
.
.
<input type="hidden" name="save" value="<? echo $save_array;?>">
....in the target file:
<?
$save_array = $_POST["save"];
echo $save_array[first_name][0];
echo $save_array[last_name][0];
?>
I get nothing.