anton_1 Posted August 10, 2011 Share Posted August 10, 2011 Hey Guys, This was working all day until now. Can you guys see anything im missing? <?php session_start(); $username = $_POST['username']; $password = $_POST['password']; $EmployeeID = $_POST['EmployeeID']; mysql_connect('localhost', 'web101-db1-1', 'mypasssord'); mysql_select_db('web101-db1-1'); // To protect MySQL injection (more detail about MySQL injection) $username = stripslashes($username); $password = stripslashes($password); $username = mysql_real_escape_string($username); $password = mysql_real_escape_string($password); $sql="SELECT * FROM regme WHERE username='$username' AND password='$password'"; $result=mysql_query($sql); // Mysql_num_row is counting table row $count=mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to file "login_success.php" session_register("username"); session_register("password"); $_SESSION["username"] = $_POST["username"]; $_SESSION["EmployeeID"] = $_POST["EmployeeID"]; header("location:login_success.php"); } else { echo "Wrong Username or Password"; } ?> Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/ Share on other sites More sharing options...
MasterACE14 Posted August 10, 2011 Share Posted August 10, 2011 what exactly is wrong? does it display an error/warning/notice ? Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255196 Share on other sites More sharing options...
anton_1 Posted August 10, 2011 Author Share Posted August 10, 2011 it doesnt display anything. it just does nothing? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255200 Share on other sites More sharing options...
trq Posted August 10, 2011 Share Posted August 10, 2011 You'll need to do some debugging then. Are your passwords really stored in plain text? Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255205 Share on other sites More sharing options...
anton_1 Posted August 10, 2011 Author Share Posted August 10, 2011 Yes for now, until I encrypt them with md5. Thanks guys Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255208 Share on other sites More sharing options...
PFMaBiSmAd Posted August 10, 2011 Share Posted August 10, 2011 it doesnt display anything. What does a 'view source' in your browser of the blank page show? Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255225 Share on other sites More sharing options...
anton_1 Posted August 10, 2011 Author Share Posted August 10, 2011 Hey! I ended up getting it lol. extra bracket Thanks alot for your help! Ant Quote Link to comment https://forums.phpfreaks.com/topic/244392-login-script/#findComment-1255256 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.