<?php
/* - - - - - - - - - - - - - - - - - - -
TRUE or true
FALSE or false
- - - - - - - - - - - - - - - - - - - */
?>
BOOLEAN SPECIFICATION | ||
NAMES | POSSIBLE VALUE | |
false | FALSE | 0 |
true | TRUE | 1 |
ed48 |
<?php
/* - - - - - - - - - - - - - - - - - - - - - - - - - -
Generally, BOOLEAN data
is used in routines which
involve decision making
We will see how, in the
near future in this tutorial
- - - - - - - - - - - - - - - - - - - - - - - - - - */
$tr01a = true;
$TR01A = TRUE;
$fl01b = false;
$FL01B = FALSE;
?>