0perator Posted November 16, 2008 Share Posted November 16, 2008 <?php $username = $_POST['username']; $password = $_POST['password']; $md5pass = md5($password); $login_check = mysql_query("SELECT * FROM students WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $login_rows = mysql_num_rows($login_check); if($login_rows == 0){ $login_check_t = mysql_query("SELECT * FROM teachers WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $login_rows_t = mysql_num_rows($login_check_t); if($login_rows_t == 0) die('Login failed</body></html>'); } elseif($login_rows_t >= 1){ $login_array_t = mysql_fetch_array($login_check_t); echo 'LOL LOL LOL LOL'; echo 'Welcome '.$login_array_t['Name']; } elseif($login_rows >= 1){ $login_array = mysql_fetch_array($login_check); echo 'Welcome '.$login_array['Name']; } else{ echo 'some sort of failure in the system'; } ?> it wont go into the LOL LOL LOL LOL section.. no matter what, it does not echo "some sort of failure in the system either". the student login works fine.. Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/ Share on other sites More sharing options...
Twister1004 Posted November 16, 2008 Share Posted November 16, 2008 Never mind that AGAIN! XD lol. You making it die at one spot even if it is correct or wrong. $username = $_POST['username']; $password = $_POST['password']; $md5pass = md5($password); $login_check = mysql_query("SELECT * FROM students WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $login_rows = mysql_num_rows($login_check); if($login_rows == 0){ $login_check_t = mysql_query("SELECT * FROM teachers WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $login_rows_t = mysql_num_rows($login_check_t); //This if will always make your page DIE. //Add OR die if($login_rows_t == 0) or die('Login failed</body></html>'); } I hope this fixes your problem. Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691618 Share on other sites More sharing options...
0perator Posted November 16, 2008 Author Share Posted November 16, 2008 That gives an illogical OR on line 30 (the one the or statement is one). Here is the full error: Parse error: syntax error, unexpected T_LOGICAL_OR in /home/srbms/public_html/login.php on line 30 Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691629 Share on other sites More sharing options...
Mark Baker Posted November 16, 2008 Share Posted November 16, 2008 it wont go into the LOL LOL LOL LOL section.. no matter what, it does not echo "some sort of failure in the system either". the student login works fine.. No it won't, because you're not defining $login_rows_t before the start of the if statement, so it isn't set and the condition $login_rows_t >= 1 can never be true Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691635 Share on other sites More sharing options...
0perator Posted November 16, 2008 Author Share Posted November 16, 2008 What would you suggest I edit the code to then? Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691637 Share on other sites More sharing options...
flyhoney Posted November 16, 2008 Share Posted November 16, 2008 Lets do a bit of code cleanup... <?php $username = $_POST['username']; $password = $_POST['password']; $md5pass = md5($password); // check if user is a student $student_result = mysql_query("SELECT * FROM students WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $student_num_rows = mysql_num_rows($student_result); if ($student_num_rows == 0) { // check and see if user is a teacher $teacher_result = mysql_query("SELECT * FROM teachers WHERE `Username` = '$username' AND `Password` = '$md5pass'"); $teacher_num_rows = mysql_num_rows($teacher_result); if ($teacher_num_rows == 0) { // no student or teacher found with given username and password die('Login failed'); } else if ($teacher_num_rows >= 1) { // print teacher welcome message $teacher = mysql_fetch_assoc($teacher_result); echo 'LOL LOL LOL LOL'; echo 'Welcome '.$teacher['Name']; } } else if ($student_num_rows >= 1) { // print student welcome message $student = mysql_fetch_assoc($student_result); echo 'Welcome '.$student['Name']; } else { echo 'some sort of failure in the system'; } ?> Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691638 Share on other sites More sharing options...
0perator Posted November 16, 2008 Author Share Posted November 16, 2008 Cheers flyhoney! Works like a gem Thx Link to comment https://forums.phpfreaks.com/topic/132987-wont-go-into-if/#findComment-691643 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.