diff options
Diffstat (limited to 'categories.php')
| -rw-r--r-- | categories.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/categories.php b/categories.php new file mode 100644 index 0000000..2ef44df --- /dev/null +++ b/categories.php @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="UTF-8"> +<title>Categories</title> +<link rel="stylesheet" type="text/css" href="styles/style.css"> +</head> +<body> +<header><h1>Categories</h1></header> +<nav> +<dl> +<dt><a href="contact.html">Contact us</a></dt> +<dt><a href=".">Home</a></dt> +<dt><a href="login.html">Login</a></dt> +</dl> +</nav> +<div id="content"> +<dl> +<?php + require_once('vendor.inc.php'); + + $categories = CategoryQuery::create()->find(); + + foreach( $categories as $category ){ + echo "<dt><a href=\"products.php?id={$category->getId()}\">{$category->getName()}</a></dt>"; + echo "<dd>{$category->getDescription()}</dd>"; + } + +?> +</dl> +<div class="spacer"></div> +</div> +<footer>Copyright by SomeCompany Ltd.</footer> +</body> +</html>
\ No newline at end of file |
