I have 4 dropdown boxes. Quantity - Products - Sizes - Colors. After the user chooses they submit and the form action is the <?php $_SERVER['PHP_SELF']; ?>. At the top of the page is:
<?php
$product = $POST['product'];
$size = $POST['select_2'];
$color = $POST['select_X'];
$quantity = $POST['quantity'];
?>
Later on I simply echo these values.
<?php echo( $quantity ." - ". $product." - ". $color ." - ". $size ); ?>
The user can submit a second product with options. When it does that, it replaces the first selection that I echoed. How do I tell it to remember the first selection, and add any additional inputs?
Thanks!