Al wrote:
I could use one additional clarification regarding good practice.
As I understand the php manual the following is acceptable.
$foo= TRUE;
if($foo) do.............. ;
where $foo is a binary; but not a variable.
$foo is a boolean in this case, but it is still a variable, just like any other.
-- paperCrane <Justin Patrin>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

