Jump to content

shirvo

Members
  • Posts

    52
  • Joined

  • Last visited

    Never

Everything posted by shirvo

  1. Hi but that didn't work it just refreshed the login page. I changed the page to a real one first as well lol.
  2. This is really simple i'm sure but i dont know how to do it. this is the code. once it has logged in the user i want it to move to a different page automaticly and have querystings attached to it. below i will mark where i want the code to go. <html> <head> <title>Login</title> </head> <body> <center> <table> <form method=post action=login.php> <p>Enter username and password to login</p> <p>User Name <input type=text name=user_name></p> <p>Password <input type=password name=password></p> <center> <input type=submit value="Login"> </center> </form> <? include 'connect.php'; $user_name = $_POST['user_name']; $password = $_POST['password']; if ($user_name == "" or $password == "") ; else { $sql_query = mysql_query("SELECT password FROM user_data WHERE user_name='$user_name'",$db); $rs = mysql_fetch_row($sql_query); if($password != $rs[0]) echo "ERROR: Invalid User"; else [color=red]echo "You are logged in";[/color] } ?> </table> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.