<html>
<head>
<title> if_and_more.php </title>
</head>
<body>
<h1>
<?php
$pet = "dog";
$animal = 'dog';
if ($pet == $animal)
{
print "Both are dog!";
?>
<h4> Here are wonderful things about dogs as pets </h4>
<ul>
<li> They are cuddly
<li> They are fuzzy
</ul>
<?php
}
elseif ($pet != "iguana")
{
print "Pet is not a lizard";
}
else
{
print "Pet and Animal are not the same!";
}
?>
</h1>
</body>
</html>