I have a quick question, is there anyway to rewrite:
<?php if ($_SERVER['QUERY_STRING'] != "Print" && $_SERVER['QUERY_STRING'] != "PrintAdmin" && $_SERVER['QUERY_STRING'] != "PrintAdminWO"): ?>
So that it's something like:
<?php if ($_SERVER['QUERY_STRING'] != "'Print' && 'PrintAdmin' && 'PrintAdminWO'"): ?>
Just so it's not so long.
Thanks