Php lesson 2
display_discountDownload <?php //Get the infromation from the form// $product_description = filter_input(INPUT_POST,'product_description'); $list_price = filter_input(INPUT_POST,'list_price'); $discount_percent = filter_input(INPUT_POST,'discount_percent'); $discount_amount = $list_price * $discount_percent *.01; $discount_price = $list_price - $discount_amount; //formating the…