Advertisement
Guest User

Untitled

a guest
Mar 5th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php
  2. $menu_query = mysqli_query($connection, "SELECT * FROM `articles_categories`");
  3. ?>
  4. <header>
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-lg-8">
  8. <nav>
  9. <div class="head__menu__nav">
  10. <ul class="d-flex justify-content-center">
  11. <?php
  12. while($menu_array = mysqli_fetch_assoc($menu_query))
  13. {
  14. ?>
  15. <li class="head__menu__item">
  16. <a href="#"> <?php echo $menu_array['title'] ?> </a>
  17. </li>
  18. <?php
  19. }
  20. ?>
  21. </ul>
  22. </div>
  23. </nav>
  24. </div>
  25. </div>
  26. </div>
  27. </header>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement