is there an easy way to check against each value in an array? something like this:
$viewonly = array('manage_orders.php', 'order_report.php'); if(($admin_get_u[4] == 'View Only Access') && ($url2 != each($viewonly)))
have a look at:
www.php.net/in_array
Thanks, I couldn't think of it.