If Statements

Lesson 20
Author : Afrixi
Last Updated : November, 2017


PHP - Programming Language
This course covers the basics of programming in PHP. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!
<ul>
  <li>Is a false Boolean expression</li>
</ul>
<ul>
  <li>Is a true Boolean expression</li>
</ul>

if($isStudent && $isSmart){ echo "You are a student"; } elseif($isStudent && !$isSmart){ echo "You are not a smart student"; } else { echo "You are not a student and not smart"; } echo "<br>";

// >, <, >=, <=, !=, == if(1 > 3){ echo "number comparison was true"; } echo "<br>";

if("dog" == "cat"){ echo "string comparison was true"; }