htacces dosyası


RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([0-9a-zA-Z-_/]+)$index.php?par=$1




index dosyası



header("Content-type: text/html; charset=utf8");

$par = array_filter(explode("/", @$_GET["par"]));
if ( @function_exists($par[0]) )
{
call_user_func($par[0], $par);
}
else
{
include("anasayfa.php");
}


function kategoriler($par)
{
$tur = $par[1];

if ($sayfa == "")
{
include("kategori.php");
}
else
{
include("kategori.php");
}
}



kategori dosyasında ise $tur değişkeninden direk veri tabanını sorgulayabilirsin index dosyasına çektiğimiz için $tur değişkeni çalışıyor eğer yardımcı olmadıysa yarın akşam hallederiz pm atarsın iyi geceler