qsadfasdgfgads

Untitled

Feb 9th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2. foreach($categories as $category){
  3.     $products = R::find('products', 'category_id', array($category['id']));
  4.     ?> <img src="/images/<?php echo $category['image']; ?>" width="200" height="200"><?php
  5.     foreach($products as $product){
  6.         echo $product['articul'];
  7.     }
  8. }
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment