userIdExists
(function)
Purpose:
Check if user id exists
Example:
userIdExists(1)
Data Type(s):
userIdExists(int)
Location:
users/helpers/users.php
Details:
Returns true or false depending on whether a given user id exists in the database
<?php if(userIdExists(1)){
//do something
}?>