PDA

View Full Version : Change password



Implement!
13-06-2006, 12:09 PM
I was woundering if anyone could do me a script to change a password script using md5

Bomb-Head
13-06-2006, 12:23 PM
Change password for what ?

Implement!
13-06-2006, 12:31 PM
I need a script that changes md5 passwords for my dj panel

Heinous
13-06-2006, 12:32 PM
I'll post the code from techtuts, can't be bothered getting a better one for you. Analyse it and learn.


<?
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>");
}
?>

Implement!
13-06-2006, 12:34 PM
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

DMB-Hosting
13-06-2006, 12:54 PM
Your making a djpanel yet you dont know php?

***?

JoeyK. (Forum Moderator) - Please don't avoid the filter.

Heinous
13-06-2006, 12:57 PM
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
Well if you bothered reading it you'd find the code you're looking for.

If you aren't willing to *try*, don't even post for help.

Implement!
13-06-2006, 02:06 PM
Yes i have made a dj panel and yes i now how to do php if i didnt i wouldnt be able to do the login would i

Heinous
13-06-2006, 02:29 PM
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.

Tomm
13-06-2006, 03:35 PM
md5();

Splinter
13-06-2006, 06:01 PM
yes you just take your string for your input and use the md5() command to convert it..

DMB-Hosting
13-06-2006, 06:03 PM
Doesnt look like to me he has a clue about PHP.

Luckyrare
13-06-2006, 06:20 PM
Doesnt look like to me he has a clue about PHP.

There isnt anything hard about MD5 in php www.php.net/md5 ;)

DMB-Hosting
13-06-2006, 06:24 PM
I know but he doesnt know a thing.

Recursion
13-06-2006, 06:31 PM
i think what he wants is somehting to encypt passwords into MD5

DMB-Hosting
13-06-2006, 06:39 PM
HAHA he bad repped me, n00b

Heinous
14-06-2006, 05:13 AM
i think what he wants is somehting to encypt passwords into MD5
Which is simple, really.

Hell, I posted it, he was just too lazy to read.

Implement!
14-06-2006, 12:16 PM
Im not lazy it dont work you idiot

Heinous
14-06-2006, 12:27 PM
Im not lazy it dont work you idiot
LOL, that's strange, cause my passwords are encrypted in my database just fine, dip****.

So.. a) You suck that bad you need someone else to give you the exact code. and b) You can't even follow a tutorial.

Want to hide these adverts? Register an account for free!