Name: Anonymous 2008-06-03 17:12
<?php
if ($expression) {
?>
<strong>This is true.</strong>
<?php
} else {
?>
<strong>This is false.</strong>
<?php
}
?>
I am confused by this code.
Can anyone explain to me what happens if $expression is true? false?
if ($expression) {
?>
<strong>This is true.</strong>
<?php
} else {
?>
<strong>This is false.</strong>
<?php
}
?>
I am confused by this code.
Can anyone explain to me what happens if $expression is true? false?