$limit_kontrol= $db->prepare("Select items_limit from orders where items_limit = ? and user_name = ? ");
$limit_kontrol->execute(array('0',$_SESSION['username']));
if($limit_kontrol->rowCount()){
echo 'Limit yok';
header("refresh:10; url=index-error.php");
}

session username ile kullanıcının order tablosunda ki verisinde limit i 0 ise . bu kod ile items tablosuna ürün eklemesini engelliyorum . ve limit yok yazdırıyorum . fakat 3 5 kullanmadan sonra hem lımıt yok dıyor hem eklıyor . nasıl çözebilirim .