예제 #1
0
파일: MyAuth.php 프로젝트: JovanRis/Demola2
 public function password($username)
 {
     echo 'password called';
     // Return the password for the username
     $res = MyDB::loginStudent($username);
     return $res['pwHash'];
 }