<?php // подключение библиотек require "inc/lib.inc.php"; require "inc/db.inc.php"; if ($goods = selectAllItems()) { } else { $error[] = "Ошибка подключения выборки"; } ?> <html> <head> <title>Каталог товаров</title> </head> <body> <p>Товаров в <a href="basket.php">корзине</a>: <?php echo $count; ?> </p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr> <th>Название</th> <th>Автор</th> <th>Год издания</th> <th>Цена, руб.</th> <th>В корзину</th> </tr> <?php if ($goods) { foreach ($goods as $item) { ?>
require_once inc_PDODataAccess; require_once inc_manage_post; $task = isset($_POST["task"]) ? $_POST["task"] : (isset($_GET["task"]) ? $_GET["task"] : ""); switch ($task) { case "selectAll": selectAll(); case "save": save(); case "delete": delete(); case "copy": copyBylaw(); //------------------------------ //------------------------------ case "selectAllItems": selectAllItems(); case "saveItem": saveItem(); case "deleteItem": deleteItem(); } function selectAll() { $where = "1=1"; $where .= dataReader::makeOrder(); $temp = management_extra_bylaw::GetAll($where); echo dataReader::getJsonData($temp, count($temp), $_GET["callback"]); die; } function save() {
</head> <body> <p>Товаров в <a href="basket.php">корзине</a>: <?php echo $count; ?> </p> <table border="1" cellpadding="5" cellspacing="0" width="100%"> <tr> <th>Название</th> <th>Автор</th> <th>Год издания</th> <th>Цена, руб.</th> <th>В корзину</th> </tr> <?php $goods = selectAllItems(); if ($goods === false) { echo 'Произошла ошибка при выводе товаров!'; exit; } if (!$goods) { echo 'На сегодня товаров нет!'; exit; } foreach ($goods as $item) { ?> <tr> <td><?php echo $item['title']; ?> </td>
<tr> <th></th> <th>ID</th> <th>Наименование товара</th> <th><a href="catalog_categ.php">Категория товара</a></th> <th>Вес товара, кг</th> </tr> <form action="" method="post"> <input name="delete" type="submit" id="delete" value="Удалить выбранный товар"> <br> </br> <a href="index.php">Главная страница</a> <br> </br> <a href="logout.php">Выход</a> <?php selectAllItems($link, $sql); ?> </form> </table> </body> </html>