by Hiroshi on June 20th, 2008

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.

  • Share/Bookmark

Leave a Review