Statement Php



An if Statement


$mood = "happy";
if ( $mood == "happy" ){
    print "I'm in a good mood";
}
?>