Skip to content
Permalink
e2f06667d2
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
32 lines (29 sloc) 539 Bytes
<html>
<head>
</head>
<body>
<p>
<?php
$items = 3;
if($items > 5) {
echo "You get a 10% discount!";
}
else {
echo "You get a 5% discount!";
}
?>
</p>
<p>
<?php
$item = 5;
// Write your if/elseif/else statement here!
if ($item < 4){
echo "This condition is true!";
}
else {
echo "This condition is not true!";
}
?>
</p>
</body>
</html>