Item | Quantity | Price |
$total = 0;
//print_r($_GET);
foreach ($posters as $key => $info){
$formattedName = str_replace(" ", "_", $key);
if ($_GET[$formattedName] > 0)
{
?>
=$key?> | =$_GET[$formattedName]?> | =$info['Price']?> |
$total += $_GET[$formattedName] * $info['Price'];
}
}
?>
Total | | =$total?> |