Crap figured it out. Was binging for the wrong answer.
if($result_obj) {
if($result_obj instanceof mysqli_result) {
echo 'good';
$data = array();
$idx = 0;
while($result = $result_obj->fetch_assoc()) {
$data[$idx] = $result;
$idx++;
}
print_r($data);
} else {
return true;
}
}
Scotty