public function yenioyunlar($limit = 15){
global $db,$tarih;
$c = $db->results("select o.sef,k.katsef,o.resim,o.ad,k.katadi,o.oyunid,o.tarih,o.kategori,k.katid,o.tarih,o.durum from
oyun as o inner join kategori as k on o.kategori=k.katid where o.durum='1' && o.tarih < '$tarih' order by o.oyunid desc limit $limit");
foreach ( $c as $q )
{
echo ''.$q->ad.'
';
}
}