food-inventory/list-products.php

84 lines
2.0 KiB
PHP
Raw Normal View History

2019-11-10 16:04:46 +01:00
<?php
require_once("./assets/php/utils.php");
if (!is_connected()) {
header("location: login.php");
}
2019-11-12 10:41:10 +01:00
if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["delete"])) {
if (!delete_product($_POST["delete"])) {
$erreur = "<p>An error happened.</p>\n";
}
}
2019-11-10 16:04:46 +01:00
$product_list = "";
foreach (get_users_products_array() as $row) {
2019-11-11 14:53:30 +01:00
$product_list = $product_list . "<tr><td>"
. htmlspecialchars($row["name"])
. "</td><td>"
. htmlspecialchars($row["description"])
. "</td><td>"
. htmlspecialchars($row["added_date"])
. "</td><td>"
. htmlspecialchars($row["expiration_date"] !== NULL ? $row["expiration_date"] : "-")
. "</td><td>"
. htmlspecialchars($row["cupboard_name"] !== NULL ? $row["cupboard_name"] : "-")
2019-11-12 10:41:10 +01:00
. "</td><td>"
. "<form method='post'><button type='publish' name='delete' value='" . $row["public_id"] . "'>Delete</button></form>"
2019-11-11 14:53:30 +01:00
. "</td><tr>\n";
2019-11-10 16:04:46 +01:00
}
?>
<!DOCTYPE html>
<html lang="en">
2019-11-11 14:53:30 +01:00
2019-11-10 16:04:46 +01:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
2019-11-11 14:53:30 +01:00
<style type="text/css">
table,
th,
td {
border: 1px solid #333;
}
td {
text-align: center;
}
</style>
2019-11-10 16:04:46 +01:00
<title>List products</title>
</head>
2019-11-11 14:53:30 +01:00
2019-11-10 16:04:46 +01:00
<body>
2019-11-11 14:53:30 +01:00
<table>
<thead>
<tr>
<th>
Nom
</th>
<th>
Description
</th>
<th>
Ajouté le
</th>
<th>
Expiration
</th>
<th>
Rangement associé
</th>
2019-11-12 10:41:10 +01:00
<th>
Supprimer
</th>
2019-11-11 14:53:30 +01:00
</tr>
</thead>
<tbody>
<?php echo $product_list; ?>
</tbody>
</table>
2019-11-10 16:04:46 +01:00
</body>
2019-11-11 14:53:30 +01:00
</html>