This is probably a simple answer, but I was curious if you have php code like say this:
if($_SESSION['id'] == '000001' || $_SESSION['id'] == '000002') {
Could those values be grouped somehow? My thoughts would be something like:
if($_SESSION['id'] == ('000001' || '000002')) {
Not a huge deal, just wondering if it is possible. If not, it seems like it should be.