If for example my statement is: <? if ($page != "index.php"... PHP: can I mention something like: <? if ($page != "index.php" AND "contact.php" PHP: ... so that the same conditions apply to another page?
<? ($page != "index.php" && $page != "contact.php") // or <? if(!in_array($page, array('index.php','contact.php'))) PHP: