After the if statement that follows is executed, what will t…
After the if statement that follows is executed, what will the value of $discount_amount be? $discount_amount = 0;$order_total = 200;if ($order_total > 200) { $discount_amount = $order_total * .3;} else if ($order_total > 100) { $discount_amount = $order_total * .2;} else { $discount_amount = $order_total * .1;}echo $discount_amount;
Read Details