Answer the question
In order to leave comments, you need to log in
How to arrange a list as a table in uikit?
There is a bar with a list
<div class="uk-navbar">
<ul class="uk-list uk-list-line uk-list-space">
<?php
$categories = mysqli_query($connection,"SELECT * FROM `category`");
while ( $cat = mysqli_fetch_assoc($categories) )
{
?>
<li class=""><a href="category.php?<?php echo $cat['id'];?>"><?php echo $cat["nameCategory"]; ?></a>
</li>
<?php } ?>
</ul>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question