im new programmer in php and now im coding a simple admin panel to train my self. heres the code :
$title= 'information';
$stm=connect()->prepare("select count(title) as count from posts where title='?'");
$stm->bindValue(1,$title);
$stm->execute();
$c=$stm->fetch(PDO::FETCH_OBJ);
print_r($c);`
ps: i have 3 titles in my db that have information 3 ,, so it should print count = 3