$fruit = 'apple'; // with indentation if($fruit == 'apple') { echo "Yes, its Apple
"; } else { echo "No, it's not
"; } // without indentation if($fruit == 'apple'){echo "Yes, its Apple
";}else{echo "No, it's not
";}
Hello World!