Help for this page

Select Code to Download


  1. or download this
    # return 1 (true) if user is found, 0 (false) if not found
    sub check_exist {
    ...
    
      return $rowcount > 0;
    }
    
  2. or download this
    if (check_exist($user)) {
       # handle_exception...
    } else {
       # user does not exist
    }