What the heck? The string "[status]='active'" doesn't check anything. It is converted to boolean by the if statment, which will be true, as it's not an empty string. I'm guessing you want to use if($status=='active'){

Hunter, Jess wrote:

I have a short bit of code that contains an if/else that is causing me some
trouble, I am sure that the answer is staring me straight in the face, and I
am not seeing it.

Can someone take a look and see where I am coding wrong?

<SNIPPET>

if ("[status]='active'"){
print ("the active line\n");
} else {
print ("inactive line\n");
}

</SNIPPET>

Thanks in advance

Jess




-- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law.




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



Reply via email to