-
Notifications
You must be signed in to change notification settings - Fork 13
/
.edit_self.php
63 lines (49 loc) · 1.87 KB
/
.edit_self.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
<?php
if($_SERVER['REQUEST_METHOD'] === 'POST') {
require_once ".db_config.php";
$connection = new PDO("mysql:host=$dhost;dbname=$dname", $duser, $dpassword);
$connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
if(!isset($dname)) {
$dname = 'ambulanc_web';
}
$formData = file_get_contents('php://input');
$input = json_decode($formData, true);
$first_name = $input['fn'];
$last_name = $input['ln'];
$email = $input['email'];
$cell_phone = $input['phone'];
$home_phone = $input['hphone'];
$home_address= $input['hadd'];
$rpi_address = $input['add'];
$sessionID = $input['session_id'];
try {
include ".functions.php";
$user = getUser($sessionID, $connection);
$username = $user['username'];
$statement = $connection->prepare("SELECT * FROM members WHERE username=:username");
$statement->bindParam(':username', $username);
$statement->execute();
$memberInfo = $statement->fetchAll(PDO::FETCH_ASSOC)[0];
$memberId = $memberInfo['id'];
$statement = $connection->prepare("UPDATE members SET first_name=:first_name, last_name=:last_name, email=:email, cell_phone=:cell_phone, home_phone=:home_phone, rpi_address=:rpi_address, home_address=:home_address WHERE username = :username");
$statement->bindParam(':first_name', $first_name);
$statement->bindParam(':last_name', $last_name);
$statement->bindParam(':email', $email);
$statement->bindParam(':cell_phone', $cell_phone);
$statement->bindParam(':home_phone', $home_phone);
$statement->bindParam(':rpi_address', $rpi_address);
$statement->bindParam(':home_address', $home_address);
$statement->bindParam(':username', $username);
$result = $statement->execute();
if($result) {
$data['success'] = true;
} else {
$data['success'] = false;
}
} catch(PDOException $e) {
$data['success'] = false;
$data['error'] = $e;
}
echo(json_encode($data));
}
?>