//$employeeAges;
//$employeeAges["Lisa"] = "28";
//$employeeAges["Jack"] = "16";
//$employeeAges["Ryan"] = "35";
//$employeeAges["Rachel"] = "46";
//$employeeAges["Grace"] = "34";
//foreach( $employeeAges as $name => $age){
// echo "Name: $name, Age: $age
";
//}
//the arrays for the quantity and the pice and the name
$quan = array('quantity','os1','os2','os3');
$size = array('7','7.5','8','8.5');
$meet = array('Bald Helmet','Red Sox Hat','Dodgers Hat');
$color= array ('red','white','blue');
$submit = $_POST['submit'];
if($submit == 'Buy Now!'){
$meet = $_POST['info'];
$quan = $_POST['quantity'];
$size = $_POST['os1'];
$size = $_POST['os2'];
$size = $_POST['os3'];
$color = $_POST['on2'];
$content = '' .$meet. '. ' .$quan. ' is how many I want. This is the size I want ' .$size. '.' .$color.' is the color that I want.
';
foreach( $quan as $much => $item){
echo 'How many'.$much.', size '.$item.'.';
}
}
echo $content;
?>