Files
inventory-website/index.php
T

19 lines
425 B
PHP
Executable File

<?php
//Use require for all DB interaction code
//https://stackoverflow.com/questions/2418473/difference-between-require-include-require-once-and-include-once
require "db/item_info.php";
$categories = get_item_base_attributes();
foreach($categories as $cat){
echo $cat["COLUMN_NAME"];
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
</body>
</html>