<html><head><title>An if Statement That Uses else</title></head><body><?php$mood = "sad";if ( $mood == "happy" ){ print "I'm in a good mood";}else{ print "Not happy but $mood";}?></body> </html>