29 lines
575 B
PHP
29 lines
575 B
PHP
|
<?php
|
||
|
|
||
|
require_once("./assets/php/utils.php");
|
||
|
|
||
|
if (!is_connected()) {
|
||
|
header("location: login.php");
|
||
|
}
|
||
|
|
||
|
$product_list = "";
|
||
|
foreach (get_users_products_array() as $row) {
|
||
|
$product_list = $product_list . "<p>"
|
||
|
. htmlspecialchars($row["name"]) . "</p>\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">
|
||
|
<title>List products</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php echo $product_list; ?>
|
||
|
</body>
|
||
|
</html>
|