-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit_account.php
105 lines (103 loc) · 3.83 KB
/
edit_account.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php ob_start();
$page_title = 'Edit Account';
require_once('includes/load.php');
page_require_level(3);
?>
<?php
//update user image
if(isset($_POST['submit'])) {
$photo = new Media();
$user_id = (int)$_POST['user_id'];
$photo->upload($_FILES['file_upload']);
if($photo->process_user($user_id)){
$session->msg('s','photo has been uploaded.');
redirect('edit_account.php');
} else{
$session->msg('d',join($photo->errors));
redirect('edit_account.php');
}
}
?>
<?php
//update user other info
if(isset($_POST['update'])){
$req_fields = array('name','username' );
validate_fields($req_fields);
if(empty($errors)){
$id = (int)$_SESSION['user_id'];
$name = remove_junk($db->escape($_POST['name']));
$username = remove_junk($db->escape($_POST['username']));
$sql = "UPDATE users SET name ='{$name}', username ='{$username}' WHERE id='{$id}'";
$result = $db->query($sql);
if($result && $db->affected_rows() === 1){
$session->msg('s',"Acount updated ");
redirect('edit_account.php', false);
} else {
$session->msg('d',' Sorry failed to updated!');
redirect('edit_account.php', false);
}
} else {
$session->msg("d", $errors);
redirect('edit_account.php',false);
}
}
?>
<?php include_once('layouts/header.php'); ?>
<div class="row">
<div class="col-md-12">
<?php echo display_msg($msg); ?>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-heading clearfix">
<span class="glyphicon glyphicon-camera"></span>
<span>Change My photo</span>
</div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-md-4">
<img class="img-circle img-size-2" src="uploads/users/<?php echo $user['image'];?>" alt="">
</div>
<div class="col-md-8">
<form class="form" action="edit_account.php" method="POST" enctype="multipart/form-data">
<div class="form-group">
<input type="file" name="file_upload" multiple="multiple" class="btn btn-default btn-file"/>
</div>
<div class="form-group">
<input type="hidden" name="user_id" value="<?php echo $user['id'];?>">
<button type="submit" name="submit" class="btn btn-warning">Change</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading clearfix">
<span class="glyphicon glyphicon-edit"></span>
<span>Edit My Account</span>
</div>
<div class="panel-body">
<form method="post" action="edit_account.php?id=<?php echo (int)$user['id'];?>" class="clearfix">
<div class="form-group">
<label for="name" class="control-label">Name</label>
<input type="name" class="form-control" name="name" value="<?php echo remove_junk(ucwords($user['name'])); ?>">
</div>
<div class="form-group">
<label for="username" class="control-label">Username</label>
<input type="text" class="form-control" name="username" value="<?php echo remove_junk(ucwords($user['username'])); ?>">
</div>
<div class="form-group clearfix">
<a href="change_password.php" title="change password" class="btn btn-danger pull-right">Change Password</a>
<button type="submit" name="update" class="btn btn-info">Update</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include_once('layouts/footer.php'); ?>