-
Notifications
You must be signed in to change notification settings - Fork 1
/
update_product_page.php
42 lines (29 loc) · 1.02 KB
/
update_product_page.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
<?php require_once("config.php"); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Update Products</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<?php include("navbar.php") ?>
<div class="small-container cart-page">
<a class="btn" href="add_product.php">Add New Product</a>
<h4 class="text-center bg-danger"><?php display_message(); ?></h4>
<table>
<tr>
<th>Id</th>
<th></th>
<th>Product</th>
<th>Category</th>
<th>Price</th>
<th>Quantity</th>
<th> </th>
</tr>
<?php get_products_update_page(); ?>
</table>
</div>
<?php include("footer.php") ?>