使用用戶名登錄應(yīng)用程序時(shí),不使用電子郵件,因此會(huì)拋出以下錯(cuò)誤,反之亦然“注意:未定義索引:電子郵件在 /Applications/XAMPP/xamppfiles/htdocs/menthor/login.php 中的第 16 行”我試過將產(chǎn)生錯(cuò)誤的行放在條件中,但這些努力證明是徒勞的 Login.php 文件(與錯(cuò)誤相關(guān)的部分)// STEP 1. Receive data / info paassed to current fileif ((empty($_REQUEST['username']) || empty($_REQUEST['password'])) && (empty($_REQUEST['email']) || empty($_REQUEST['password']))) { $return['status'] = '400'; $return['message'] = 'Missing requird information'; echo json_encode($return); return;} // securing received info / data from hackers or injections$email = htmlentities($_REQUEST['email']);$username = htmlentities($_REQUEST['username']);$password = htmlentities($_REQUEST['password']);// STEP 2. Establish connection with the serverrequire('secure/access.php');$access = new access('localhost' , 'root', '' , 'menthor');$access->connect();// STEP 3. Check existence of the user. Try to fetch the user with the same email address// STEP 3. Check availability of the login/user information$username_aval = $access->selectUser_Username($username);$email_aval = $access->selectUser_Email($email);//$return = array();// user is foundif ($username_aval) { // Get encrypted password and salt from the server for validation $encryptedPassword = $username_aval['password']; $salt = $username_aval['salt'];通過 Web 服務(wù)器登錄時(shí)的當(dāng)前結(jié)果Notice: Undefined index: email in /Applications/XAMPP/xamppfiles/htdocs/menthor/login.php on line 16{"status":"200","message":"Successfully Logged In","id":"44","username":"rondell","email":"rondell@gmail.com","fullName":"rondell","lastName":"","birthday":"","gender":"","cover":"","ava":"","bio":"","allow_follow":"1"}預(yù)期成績{"status":"200","message":"Successfully Logged In","id":"44","username":"rondell","email":"rondell@gmail.com","fullName":"rondell","lastName":"","birthday":"","gender":"","cover":"","ava":"","bio":"","allow_follow":"1"}
- 2 回答
- 0 關(guān)注
- 149 瀏覽
添加回答
舉報(bào)
0/150
提交
取消