Quotes help make search much faster. Example: "Practice Makes Perfect"
Monday, April 15, 2013
Codecademy Sample Solution: Your First 'if'
<html>
<head>
<title>Our Shop</title>
</head>
<body>
<p>
<?php
$items = 7; // Set this to a number greater than 5!
if ($items > 5){
echo "You get a 10% discount!";
}
?>
</p>
</body>
</html>
No comments:
Post a Comment