PHP If Statement
June 20th, 2008 | by King | Posted in » PHP Basics, if
To understand if statement consider the following script.
<?php $apples="3"; if($apples=='3') { echo "Correct"; } ?>
The output will be correct because apples are 3. It is about that if apples are 3 then print correct.
