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