Example #1
0
<?php

include "session_check.php";
include "header.php";
include "menu.php";
?>

<pre>
	<big>Kategorien</big>
<?php 
require_once "DataBase/Category.php";
$category = new Category();
$list = $category->getABC();
for ($i = 0; $i < count($list); $i++) {
    print "\t\t<a href=\"product_list.php?search_category=" . $list[$i][0] . "\">- " . htmlspecialchars($list[$i][1]) . "</a>\n";
}
?>
</pre>
<?php 
include "footer.php";