Okay, so, im getting a little confused lately with a particular case of if statements, more exactly the following, i know what "!" means, but i cant process it in this sittuation..
can anyone explain it to me please?
PHP Code:
if(!user_is_arab(id) || !user_is_belgian(id))
{
do this
}
if(!user_is_arab && !user_is_belgian(id))
{
do this
}
__________________