I have some admin sections on my site which allow me to use them based on my user ID, I plan on allowing a select few others to these features as well and Im thinking an array will be the best method
here is what I use now
<? if($info['auto_id']==1) {?>
admin code here
<? } ?>
how could I use something like this
$moderators = array('1','3456','345','575676');
in that code above