Jump to content

Editing


ItsWesYo

Recommended Posts

This is something basic to give you an idea, it requires a correct password to be able to edit a username. :)

[code]<?php

mysql_connect( "localhost", "username", "password" );
mysql_select_db( "database" );

if( $_POST['edit'] )
{
$password = $_POST['password'];

$check_password = mysql_fetch_array( mysql_query( "select * from admin where password = '$password'" ) );

if( $check_password )
{
$username = $_POST['username'];

mysql_query( "update users set username = '$username'" );

echo "Username was updated sucessfully.";
}
else
{
echo "Your password was incorrect.";
}
}

?>

<form method='post'>
Admin pass (needed to edit) <input type='password' name='password'><br><br><br>
<b>EDIT:</b><br>
Username: <input type='text' name='username'><br>
<input type='submit' name='edit' value='EDIT'>
</form>[/code]
Link to comment
https://forums.phpfreaks.com/topic/13722-editing/#findComment-53262
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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