<?php$cost = 25;$type = $_REQUEST["Type"];if ($type == "Business") $cost = $cost + 10;elseif ($type == "Personal") $cost = $cost + 5;echo "Total Price:" . " £" . $cost?>