I think I\'m missing something basic here. Why is the third IF condition true? Shouldn\'t the condition evaluate to false? I want to do something where the id is not 1, 2 or
because the OR operator will return true if any one of the conditions is true, and in your code there are two conditions that are true.