-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.php
99 lines (67 loc) · 3.26 KB
/
update.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
<?php
session_start();
if($_SESSION["admin-login"] != "true"){
header('Location: login.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<?php
$message="";
if($_SERVER["REQUEST_METHOD"] == "GET") {
$menu_id=$_GET["menu_id"];
}
require_once("connect-db.php");
$sql = "SELECT * FROM menu WHERE menu_id = :menu_id";
$statement = $db->prepare($sql);
$statement->bindValue(":menu_id", $menu_id);
if($statement->execute()) {
$menu = $statement->fetchAll();
$statement->closeCursor();
$message = "<h3>Menu successfully retreived.</h3>";
} else {
$message = "<h3>ERROR retreiving menu data.</h3>";
}
?>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rel="icon" href="taco_truck.jpg" type="image/x-icon">
<title>Ted's Taco Truck</title>
</head>
<body>
<div class="container">
<?php include("admin-header.html");?>
<?php include("nav.html");?>
<article>
<div class="row">
<div class="col-md-2"></div>
<div class="col-md-6 box">
<?php
foreach($menu as $m) {
?>
<h2>Update Menu Item</h2>
<form action="process-update.php" method="POST">
<input type="hidden" name="menu_id" value="<?php echo $m["menu_id"];?>">
<label>Menu Item:</label><br>
<input type="text" name="menu_item" value="<?php echo $m["menu_item"];?>"><br>
<label>Price:</label><br>
<input type="text" name="price" value="<?php echo $m["price"];?>"><br>
<label>Image:</label><br>
<input type="text" name="image" value="<?php echo $m["image"];?>"><br>
<label>Description:</label><br>
<input type="text" name="info" value="<?php echo $m["info"];?>"><br><br>
<input type="submit" value="Update">
</form>
<?php } ?>
</div>
<div class="col-md-4"></div>
</div>
</article>
<?php include("footer.html");?>
</div>
</body>
</html>