Ajax Post işlemi sonrası işlem yaptırdığım dosyanın baglı olduğu sınıfı bulamıyor
post.php

inlcude_once("yorum.class.php");
$new= new comment();
if(iseet($_POST))
{
$cek= $new->yorumkontrol("sa","as@a.com",7,"12sdeaege","bu bir yorum");
if(isset($cek["hata"]))
{
echo $cek["hata"];
}
}
?>


yorum.class.php

$dh= new dahilet();
$dh->autoload("baglan");
class comment extends commfunct
{
function yorumkontrol($a,$b,$c,$d,$e)
{

}

}
class commfunct extends baglan
{
function konumsor($a,$b)
{
$sql="select * from linksistem where id=:idal,cid=:cidal order by sira asc limit 1";
$sor=$db->prepare($sql);
$sor->execute(array("idal"=>$a,"cidal"=>$b))
if(isset($sor->errorInfo()[2]))
{
if($sor->rowCount()>0)
{ return false;}
else {return true;}
}
else{return false;}
}
}

?>

burada işlem yaptığımda commfunct yüklenmedi hatası dönüyor