我从我的PHP代码中获得12行但只打印一条记录...只打印第一个db ...我的问题是在循环中..问题是什么?
$rs = $db->Execute("sp_helpdb");
if ($rs === false) {
trigger_error('Wrong SQL: ' . $sql . ' Error: ' . $db->ErrorMsg(), E_USER_ERROR);
} else {
$rows_returned = $rs->RecordCount();
echo "Rows: " . $rows_returned . "<p>";
echo "<table>";
echo "<pre>", htmlspecialchars(print_r($rs, true)), "</pre>";
echo "</table>";
}