コード例 #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'];
 }