I have an Array $_POST['size']
I want to pass this on to the next page
at first i thought, well thats easy just pass it:
<input type="hidden" name="size" value="<?php echo $_POST['size'] ?>"/>
obviously this is wrong but is there a way to do it without doing this:
foreach ($_POST['size'] as $key => $value){
echo '<input type="hidden" name="size['.$key.']" value="'.$value.'"/>';
}