I am new in php, and wonder why I getting this, need expert to guide. Thanks.
PHP Fatal error: Call to a member function rowCount() on resource in C:\inetpub\wwwroot\xxx\xxx.php on line 9
<?php
include 'connect_db.php';
$conn = null;
$sqlGetFeedback = "Select * from t_abc";
$resFB = $conn->query($sqlGetFeedback);
$rows = array();
if($resFB->rowCount()){
echo json_encode($resFB->fetchAll(PDO::FETCH_ASSOC));
} else {
echo '[{}]';
}
?>