-
Notifications
You must be signed in to change notification settings - Fork 13
/
customer_profile_action.php
66 lines (50 loc) · 1.59 KB
/
customer_profile_action.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
<?php
/* Avoid multiple sessions warning
Check if session is set before starting a new one. */
if(!isset($_SESSION))
{
session_start();
}
include "validate_customer.php";
include "connect.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
$email = mysqli_real_escape_string($conn, $_POST["email"]);
$address = mysqli_real_escape_string($conn, $_POST["address"]);
$cus_uname = mysqli_real_escape_string($conn, $_POST["cus_uname"]);
$sql0 = "UPDATE customer SET email = '$email',
address = '$address',
uname = '$cus_uname'
WHERE cust_id=".$_SESSION['loggedIn_cust_id'];;
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="action_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<?php
if (($conn->query($sql0) === TRUE)) { ?>
<p id="info"><?php echo "Values Updated Successfully !";
?></p>
<?php
}
else { ?>
<p id="info"><?php echo "Error: " . $sql0 . "<br>" . $conn->error . "<br>";
?></p>
<?php
}
?>
</div>
<?php $conn->close(); ?>
<div class="flex-item">
<a href="customer_home.php" class="button">Home</a>
</div>
</div>
</body>
</html>