Comparison Assignment38
Comparison.php
<?php
$behavior = "good";
$attention = "bad";
$cooperation = 9.5;
$effort = "bad";
$enthusiasm = 8.5;
if ($behavior!="bad") //not equal to
{
print("Bahavior was good.<br>");
}
if ($attention == "good") //equal to
{
print("Attention was good.<br>");
}
if ($cooperation >=9) //greater than or equal to
{
print("Cooperation was good. <br>");
}
if ($effort==="bad") //identical to (including data type)
{
print("Effort was bad. <br>");
}
if ($enthusiasm <7) //less than
{
print("Enthusiasm was bad. <br>");
}
?>