I have the following code:

function writePriv ($x) {
    if ($y== 0) {
       return TRUE;
    } else {
       return FALSE;
    }

}

 $writePriv = writePriv('w');
 if ($writePriv == FALSE) { print "false!!!"; }
 print "<br /> write priv is $writePriv";


The output is:

false!!!
write priv is

______________
When writePriv returns TRUE
the output is:

write priv is 1.


My question: why when the function returns FALSE, don't I get a 0 (zero)?

Thanks

Merrill

_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to