Echo Row Count()给出了'undefined function fetch_assoc()`的错误

时间:2017-01-18 08:02:12

标签: php

请看下面的代码,我无法确定我错过了什么..

<?php
$sql4 = "SELECT COUNT(*) as rowCount FROM merchassignmenthistory WHERE executive = '$executive' ";
$result4 = $conn->query($sql4);
$rowCount= $result4>fetch_assoc();                                   
?>


<span><?php echo $rowCount['rowCount']; ?></span>

现在,当我执行时,它显示错误Call to undefined function fetch_assoc()

请注意,我有一个会话,数据库集中的表已经.. 任何帮助都得到了赞赏..

1 个答案:

答案 0 :(得分:2)

你错过了<{p>中的-

$result4>fetch_assoc();

应该是:

$result4->fetch_assoc();