Executing Multiple Statements with One if : If : Language Basics PHP Source Code


PHP Source Code » Language Basics » If »

 

Executing Multiple Statements with One if




<?

$sky_color = "blue";

if($sky_color == "blue") {
     print("A <br/>");
     print("B <br/>");
}

print("Here I am.");

?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» If