diff options
Diffstat (limited to 'application/models')
-rw-r--r-- | application/models/muser.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/application/models/muser.php b/application/models/muser.php index eb7c3d385..a93865fd4 100644 --- a/application/models/muser.php +++ b/application/models/muser.php @@ -87,6 +87,21 @@ class Muser extends CI_Model { exit(); } + function username_exists($username) + { + $query = $this->db->query(" + SELECT id + FROM users + WHERE username = ? + ", array($username)); + + if ($query->num_rows() > 0) { + return true; + } else { + return false; + } + } + function hash_password($password) { |