
04-18-2004, 10:10 PM
|
|
|
Join Date: Feb 2002
Location: Maryland, US
Posts: 6,144
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by AN-net
like say i want to make it so it checks one variable, sees if someones userid is in this array, or the userid equals this other userid, or if the user is an administrator. i know how to do each separately but how do i do it all in one if statement?
|
PHP Code:
if (in_array($userid, $listOfUserids) or $userid == $otherUserid or is_member_of($arrayWithUseridKey, 6))
|