I was woundering if anyone could do me a script to change a password script using md5

Change password for what ?
I'll post the code from techtuts, can't be bothered getting a better one for you. Analyse it and learn.
PHP Code:<?
ob_start();
include("config.php");
if ($logged[username])
{
// the user is logged in! We continue...
if (!$_POST[update])
{
// the form hasn't been submitted. We continue...
$profile = mysql_query("SELECT * from users where username = '$logged[username]'");
$profile = mysql_fetch_array($profile);
// the above lines get the information so that it can be displayed in the html form.
echo("
<center><form method=\"POST\">
<table width=\"100%\">
<tr>
<td align=\"right\" width=\"25%\">
Location
</td>
<td align=\"left\">
<input type=\"text\" size=\"25\" maxlength=\"25\" name=\"locate\" value=\"$profile[location]\"></td>
</tr>
<tr>
<td align=\"right\" width=\"25%\">
MSN Messenger
</td>
<td align=\"left\">
<input size=\"25\" name=\"msn\" value=\"$profile[msn]\"></td>
</tr>
<tr>
<td align=\"right\" width=\"25%\">
AOL Messenger</td>
<td align=\"left\">
<input size=\"25\" name=\"aim\" value=\"$profile[aim]\"></td>
</tr>
<tr>
<td align=\"right\" width=\"25%\">
Email Address</td>
<td align=\"left\">
<input size=\"25\" name=\"email\" value=\"$profile[email]\"></td>
</tr>
<tr>
<td align=\"center\">
</td>
<td align=\"left\">
<input type=\"submit\" name=\"update\" value=\"Update\"></td>
</tr>
</table>
</form>
</center>");
}
else
{
$email = htmlspecialchars($_POST[email]);
$aim = htmlspecialchars($_POST[aim]);
$msn = htmlspecialchars($_POST[msn]);
$locate = htmlspecialchars($_POST[locate]);
// the above lines get rid of all html.
echo ("Your profile has been updated!");
$update = mysql_query("Update users set email = '$email',
msn = '$msn', aim = '$aim', location = '$locate' where username = '$logged[username]'");
// updates the information in the database.
}
}
else
{
// They aren't logged in!
echo ("<a href=\"login.php\">You must login</a>");
}
?>
XHTML, CSS, AJAX, JS, php, MySQL.
--
HxF moderators can't read timestamps.
Your making a djpanel yet you dont know php?
***?
JoeyK. (Forum Moderator) - Please don't avoid the filter.
Last edited by JoeyK.; 14-06-2006 at 05:44 AM.
Well if you bothered reading it you'd find the code you're looking for.Originally Posted by Jamie0112
For get it i am not uing techtuts and i have made the login my self and its no crap one so it dont matter
If you aren't willing to *try*, don't even post for help.
XHTML, CSS, AJAX, JS, php, MySQL.
--
HxF moderators can't read timestamps.
If you made a DJ panel, you would know the basics of sql and md5. Der der der.
And whoever the moron was that bad repped me for my above post, is just that, a moron. Not even gutfull enough to leave a name, wimps.
XHTML, CSS, AJAX, JS, php, MySQL.
--
HxF moderators can't read timestamps.
Want to hide these adverts? Register an account for free!