<html>
<head>
<title>Our Shop</title>
</head>
<body>
<p>
<?php
$items = 1; // Set this to a number greater than 5 to graduate from the exercise
if($items == 1){
echo "Sorry, no discount!";
}
elseif ($items > 5){
echo "You get a 10% discount!";
}
else{
echo "You get a 5% discount!";
}
?>
</p>
</body>
</html>
No comments:
Post a Comment