Advertisement
Guest User

Untitled

a guest
May 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.76 KB | None | 0 0
  1.         while ($row = mysqli_fetch_assoc($rowc)) {
  2.             echo "<div class=\"icon-block\">";
  3.             echo "<a href=\"categories.php?category_id={$row['name']}\" class =\"cyan-text\" style=\"font-weight: bold; text-transform: uppercase;\">  " . $row['name'] . "</a>";
  4.             if($row['id'] === $category_id) {
  5.                 while ($r = mysqli_fetch_assoc($subcategories_list)) {
  6.                
  7.                     echo "<div class=\"icon-block\">";
  8.                     echo "<a href=\"categories.php?category_id={$row['name']}&subcategory_id={$r['name']}\" class =\"cyan-text\" text-transform: uppercase;\">  " . $r['name'] . "</a>";
  9.                     echo "</div><br><br>";
  10.                }
  11.             }  
  12.             echo "</div><br>";
  13.  
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement