PHP:为什么输出为0?

时间:2017-01-04 15:20:53

标签: php sql output

我是PHP的新程序员,现在正在编写一个简单的管理面板来训练我的自我。 继承人代码:

$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:我的数据库中有3个标题有3个标题,所以它应该打印count = 3

0 个答案:

没有答案