-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed already existing functions
- Loading branch information
Showing
1 changed file
with
1 addition
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,16 +165,7 @@ sorry John you will be banned :( | |
$this->aauth->ban_user(3); | ||
``` | ||
|
||
You can check if the user exists in the database based on the user's email address | ||
|
||
```php | ||
if($this->aauth->user_exsist_by_email('[email protected]')){ | ||
//user exsist | ||
}else{ | ||
//user not exsist | ||
} | ||
``` | ||
or user id | ||
You can check if the user exists in the database based on the user's id | ||
|
||
```php | ||
if($this->aauth->user_exsist_by_id(3)){ | ||
|