<html> <head> <title> if_and_equality.php </title> </head> <body> <h1> <?php $pet = "dog"; $animal = 'dog'; if ($pet == $animal) { print "Both are dog!"; } elseif ($pet != "iguana") { print "Pet is not a lizard"; } else { print "Pet and Animal are not the same!"; } ?> </h1> </body> </html>