Edit:
i have found out that
md5()function returns hashed version of your password and puts it into your database...that's what the problem most probably...
so you need to hash your password you want to replace it with or remove md5() from your register script(which is not good) if you needed that information because you are creating a register script,put md5()function into it
do it like this:
$db_pass5 = md5($new_pass);
mysql_query("insert into players (pass) values(''$db_pass5)") or die("Could not register.. trouble with adding you to the players table.");that should do it...i hope i helped



