I was wondering if any1 can help me in making of this type navigation style
Firs page, list of categories.
If you click on one of the categories, its shown like this:
Category > Art & Antiques
this is what i have.... it doesnt show right.
<?
$sql = "SELECT * FROM gallery_category ORDER BY category_id DESC";
$rezultati = mysql_query($sql, $db) or die(mysql_error());
while ($polje = mysql_fetch_array($rezultati)) {
$kategorija = $polje['category_name'];
echo "<BR>$kategorija<P>";
}
?>
Thanks