André Medeiros wrote:
On Wed, 2005-07-27 at 17:17 -0400, Sebastian wrote:

i never really used constants before so this may sound stupid..
when you define a constant using define() and want to return true/false is this logical:

if($bars == 3)
{
   define('BAR', 1);
}

then:

if(BAR)
{

...



That's an incorrect use for constants. Use variables for that =]

WHY?



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

Reply via email to