I have an if statement that is always evaluating true even if none of the conditions are true. It goes like this:

if(condition1 || condition2 || condidion3)
{
//do stuff
}

For whatever reason even if none of the 3 conditions are actually true, it just runs anyway. Is there something weird in or statements that cause this? I have even tried putting each condition in parentheses just to see if it helps.

well, that means one of the conditions is definitely true..

Try to echo each condition variable and see which one is the one always true :) this is the simplest way

Gah, was a dumb error on my part. Gotta love mondays. Thanks yo.

you bet ;)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.