<?php
$kategoricek = $db->prepare("SELECT * FROM test_kategori where kategori_durum=? order by kategori_sira between 1 and 10 limit 8");
$kategoricek->execute(array("1"));
while($kategoriler = $kategoricek->fetch(PDO::FETCH_ASSOC)){
?>
<li><a href="urunler-<?=seo($kategoriler["kategori_adi"]).'-'.$kategoriler["id"]?>"><?php echo $kategoriler['kategori_adi']; ?></a></li>
<?php }?>
Problem nedir?
