Forum Moderators: coopster
<input type="hidden" name="anothersize[]" value="<?= $_POST[sizes]?>" />
Because this is going to be sent to another page upon submisssion on the second form. The third page then should process the information within the array. However, the contents is not in the array anymore. The following code only ouputs the size ID in Array.
$asize = $_POST['anothersize'];
foreach ($asize as $sizeID)
{ echo "The Size ID is $sizeID<br>";
}
This makes me wonder if I can't store the array contents into a hidden input type in a different form.
Any help would be appreciated.