Carl-Cox- Posted June 30, 2003 Share Posted June 30, 2003 ok i got this code so far i thought it was right but i keep getting the error cant do it. but the line seems ok. all the tables and rows are correct im baffled. $mode = $HTTP_GET_VARS[\'mode\']; if ($mode == "login"){ $username = $HTTP_POST_VARS[\'username\']; $password = $HTTP_POST_VARS[\'password\']; $db=mysql_connect("localhost","","") or die ("cant connect"); mysql_select_db("News",$db) or die ("cant change"); $result=mysql_query("select * from users where name=\'$username\'",$db) or die ("cant do it"); while ($row=mysql_fetch_array($result)) { if ($row["password"]==$password) { print("Successfully Logged In!<a href="default.php?"\'>Click Here</a>"); exit; } } } Quote Link to comment Share on other sites More sharing options...
shivabharat Posted July 4, 2003 Share Posted July 4, 2003 Try this $mode = $HTTP_GET_VARS[\'mode\']; if ($mode == "login") { $username = $HTTP_POST_VARS[\'username\']; $password = $HTTP_POST_VARS[\'password\']; $db=mysql_connect("localhost","","") or die ("cant connect"); mysql_select_db("News",$db) or die ("cant change"); $result=mysql_query("select * from users where name=\'$username\' and password=\'$password\'",$db) or die ("cant do it"); $numrows = mysql_num_rows($result); if ( $numrows > \'0\') { print("Successfully Logged In!<a href="default.php?"\'>Click Here</a>"); exit; } } Quote Link to comment 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.