-
Notifications
You must be signed in to change notification settings - Fork 0
/
Admin-int.php
48 lines (26 loc) · 1.08 KB
/
Admin-int.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
<!DOCTYPE html>
<html>
<head>
<title>Admin's food update</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="form-area">
<h4>Update</h4>
<form action="picture.php " method="post" enctype="multipart/form-data">
<input type='hidden' name="id" value=" ">
<p>Meal</p><br>
<input type='text'name="Meal"placeholder='Meal' required>
<p> Price</p><br>
<input type='text'name="Price"placeholder='Enter Price' required>
<p> Description</p><br>
<input type='text'name="Description"placeholder='Description' required>
<p> Category</p><br>
<input type='text'name="Category"placeholder='Category' required>
<p> Upload Image</p><br>
<input type='file' name="Image" placeholder='Image' required>
<button type='Image' name="submitImage" class='Update-btn'><strong>Update</strong></button>
</form>
</div>
</body>
</html>