I'm feeling quite stupid but I can't remember how I can make a nested conditional statement in php.
What I'm trying to do is:
if (A=="blah" && B=="bleh" && C=="bloh" && (D=="bluh" || E=="blih"))
easier to read:
if (A AND B AND C AND (D OR E))
Thanks!
