-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-user.php
36 lines (28 loc) · 994 Bytes
/
update-user.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
<?php
/**................................................................
* @package eblog v 1.0
* @author Faith Awolu
* Hillsofts Technology Ltd.
* ................................................................
*/
session_start();
include('connect.php');
$user=$_SESSION['SESS_MEMBER_ID'];
$a = $_POST['email'];
$b = $_POST['name'];
$c = $_POST['address'];
// query
$sql = "UPDATE user SET
`email`=?,`name`=?,`address`=?
WHERE id='$user'";
//$sql = "INSERT INTO settings (site_name,site_title,email,site_keyword,street,city,country,phone,facebook,twitter,linkedin,status) VALUES (:a,:b,:c,:d,:e,:f,:g,:h,:i,:j,:k,:l)";
$q = $db->prepare($sql);
$q->execute(array($a,$b,$c));{
if($q){
header("location:user.php?success=true");
}else{
header("location:user.php?failed=true");
}
}
?>