Jump to content

Change password wierd problem


Linjon

Recommended Posts

Hey. I have one script and if i change password by that then it changes all users passwords which are in database. This is my code:

$username = $_POST['username'];

$password = $_POST['password'];

$con = mysql_connect("localhost","root","");

if (!$con)

  {

  die('Could not connect: ' . mysql_error());

  }

 

mysql_select_db("amxbans", $con);

mysql_query("UPDATE `game`.`users` SET `username` = '$username', `password` = '$password'");

echo "Password changed";

?>

Link to comment
Share on other sites

Wow thanks it works now. Can someone help me with checking old password and new passwords?

My form:

<html>
<body>
<table>
<form method = 'post' action= 'change.php'>
<tr>
<td>Username:</td>
<td><input type = 'text' name = 'username'></td>
</tr>
<tr>
<td>Password:</td> 
<td><input type = 'password' name = 'password'></td>
</tr>
<td>Password again:</td> 
<td><input type = 'password' name = 'password2'></td>
</tr>
<tr>
<td><input type = 'submit' name = 'submit' value = 'Change password'></td>
</tr>
</form>
</table>
</body>
</html>

Link to comment
Share on other sites

You'd need a field in the form called "oldpassword" or something. Then you'd do a check.

<?php
//Do a query to get the results of the current logged in user
$query = mysql_query("select * from users where id = ".$_SESSION['id']."");
$row = mysql_fetch_assoc($query);
$oldpassword = $_POST['oldpassword'];
if(sha1($oldpassword) == $row['password']) { //Or whatever encryption it is (sha1 I put in)
      //go along with the rest of the code you already have.
} else { 
      echo 'You current password entered is incorrect';
}
?>

Link to comment
Share on other sites

Problem:

Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in change.php on line 13

My code:

<?php
$username = $_POST['username'];
$password = $_POST['password'];
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
mysql_select_db("game", $con);

//Do a query to get the results of the current logged in user
$query = mysql_query("SELECT * FROM users WHERE username = ".$_POST['username']."");
$row = mysql_fetch_assoc($query);
$oldpassword = $_POST['oldpassword'];
if(sha1($oldpassword) == $row['password']) { //Or whatever encryption it is (sha1 I put in)
      //go along with the rest of the code you already have.
} else { 
      echo 'You current password entered is incorrect';
}

mysql_query("UPDATE `game`.`users` SET  `password` = '$password' where `username` = '$username'");
?> 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.