55 lines
1.0 KiB
PHP
55 lines
1.0 KiB
PHP
<?php
|
|
|
|
require_once("./assets/php/utils.php");
|
|
|
|
if (!is_connected()) {
|
|
header("location: login.php");
|
|
}
|
|
|
|
$cupboard_list = "";
|
|
foreach (get_users_cupboards_array() as $row) {
|
|
$cupboard_list = $cupboard_list . "<tr><td>"
|
|
. htmlspecialchars($row["name"])
|
|
. "</td><td>"
|
|
. htmlspecialchars($row["description"])
|
|
. "</td></tr>\n";
|
|
}
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<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">
|
|
<style type="text/css">
|
|
table,
|
|
th,
|
|
td {
|
|
border: 1px solid #333;
|
|
}
|
|
</style>
|
|
<title>List cupboard</title>
|
|
</head>
|
|
|
|
<body>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Nom
|
|
</th>
|
|
<th>
|
|
Description
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php echo $cupboard_list; ?>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
|
|
</html>
|