Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
phppickem/user_edit.php
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
74 lines (61 sloc)
2.71 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require('includes/application_top.php'); | |
include('includes/classes/class.formvalidation.php'); | |
if (isset($_POST['submit'])) { | |
$my_form = new validator; | |
if($my_form->checkEmail($_POST['email'])) { // check for good mail | |
if ($my_form->validate_fields('firstname,lastname,email,password')) { // comma delimited list of the required form fields | |
if ($_POST['password'] == $_POST['password2']) { | |
$salt = substr($crypto->encrypt((uniqid(mt_rand(), true))), 0, 10); | |
$secure_password = $crypto->encrypt($salt . $crypto->encrypt($_POST['password'])); | |
$sql = "update " . DB_PREFIX . "users "; | |
$sql .= "set password = '".$secure_password."', salt = '".$salt."', firstname = '".$_POST['firstname']."', lastname = '".$_POST['lastname']."', email = '".$_POST['email']."' "; | |
$sql .= "where userID = " . $user->userID . ";"; | |
//die($sql); | |
$mysqli->query($sql) or die($mysqli->error); | |
//set confirmation message | |
$display = '<div class="responseOk">Account updated successfully.</div><br/>'; | |
} else { | |
$display = '<div class="responseError">Passwords do not match, please try again.</div><br/>'; | |
} | |
} else { | |
$display = str_replace($_SESSION['email_field_name'], 'Email', $my_form->error); | |
$display = '<div class="responseError">' . $display . '</div><br/>'; | |
} | |
} else { | |
$display = '<div class="responseError">There seems to be a problem with your email address, please check.</div><br/>'; | |
} | |
} | |
include('includes/header.php'); | |
$sql = "select * from " . DB_PREFIX . "users where userID = " . $user->userID; | |
$query = $mysqli->query($sql); | |
if ($query->num_rows > 0) { | |
$row = $query->fetch_assoc(); | |
$firstname = $row['firstname']; | |
$lastname = $row['lastname']; | |
$email = $row['email']; | |
} | |
if (!empty($_POST['firstname'])) $firstname = $_POST['firstname']; | |
if (!empty($_POST['lastname'])) $lastname = $_POST['lastname']; | |
if (!empty($_POST['email'])) $email = $_POST['email']; | |
?> | |
<h1>Edit User Account Details</h1> | |
<?php if(isset($display)) echo $display; ?> | |
<form action="user_edit.php" method="post" name="edituser"> | |
<fieldset> | |
<legend style="font-weight:bold;">Enter User Details:</legend> | |
<p>First Name:<br /> | |
<input type="text" name="firstname" value="<?php echo $firstname; ?>"></p> | |
<p>Last Name:<br /> | |
<input type="text" name="lastname" value="<?php echo $lastname; ?>"></p> | |
<p>Email:<br /> | |
<input type="text" name="email" value="<?php echo $email; ?>" size="30"></p> | |
<p>New Password:<br /> | |
<input type="password" name="password" value=""></p> | |
<p>Confirm Password:<br /> | |
<input type="password" name="password2" value=""></p> | |
<p><input type="submit" name="submit" value="Submit" class="btn btn-primary"></p> | |
</fieldset> | |
</form> | |
<?php | |
include('includes/footer.php'); |