qsadfasdgfgads

Untitled

Feb 9th, 2019
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.27 KB | None | 0 0
  1. <?php
  2. define('ROOT', $_SERVER['DOCUMENT_ROOT']);
  3. require ROOT . '/lib/db.php';
  4.  
  5. $categories = R::find('categories');
  6. ?>
  7.  
  8. <!doctype html>
  9. <html lang="en">
  10. <head>
  11.     <link rel="stylesheet" href="/css/style.css">
  12.     <meta charset="UTF-8">
  13.     <meta name="viewport"
  14.           content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  15.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  16.     <title>Document</title>
  17. </head>
  18. <body>
  19. <?php foreach ($categories
  20.  
  21. as $category) {
  22. $products = R::find('products', 'category_id', array($category['id']));
  23. ?> <img src="/images/<?php echo $category['image']; ?>" width="200" height="200"> <?php
  24. foreach ($products
  25.  
  26. as $product){
  27. ?>
  28.  
  29. <table class="catalog">
  30.     <thead>
  31.     <tr>
  32.  
  33.         <th>Артикул</th>
  34.  
  35.         <th>Имя</th>
  36.         <th>Описание</th>
  37.         <th>Ед/измерения</th>
  38.         <th>Количество</th>
  39.         <th>Цена</th>
  40.  
  41.     </tr>
  42.     </thead>
  43.     <tbody>
  44.  
  45.  
  46.     <tr id="5">
  47.  
  48.         <td><?php echo $product['name']; ?></td>
  49.         <td>gg</td>
  50.         <td>ff</td>
  51.         <td>123</td>
  52.         <td>66</td>
  53.         <td>24</td>
  54.  
  55.     </tr>
  56.  
  57.     </tbody>
  58.     <?php }
  59.     } ?>
  60. </table>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment