[snip]
Well, so is there any online resource whereby I can read up on "FLAG"
???Or any idea how should I go about creating the memory location to
store the binary-ish information (e.g. true/false, yes/no, 1/0)? 
Hope to get some help soon...thnx. 
[/snip]

You're not likely to find something specific on FLAG, but maybe the
following demonstration can help....

<?php

if("blue" == $sky){
        $niceWeatherFLAG = TRUE;
} else {
        $niceWeatherFLAG = FALSE;
}

?>

$niceWeatherFLAG is that 'memory location' (variable) where the FLAG
information is stored.

Now, what is the precise nature of your problem? List citizens would
certainly be glad to help if we knew the problem.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to