I know that in a case like this
if((test1) && (test2) && (test3)) {
...
}if test1 fails, dear PHP won't bother doing test2 and 3. Am I correct? Is there a syntax that will make it carry on with test2 and 3 anyway, regardless of how test1 came out?

