Advertisement
Guest User

Untitled

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