因此,通常我會像這樣循環訪問數據庫;循環數據庫
while($row = mysql_fetch_array($result)) {
// echoes here
}
這工作正常。但是如果我想對此做些什麼呢?
<h1><?= $row["category_name"]; ?></h1>
<p><?= $row["description"]; </p>
while($row = mysql_fetch_array($result)) {
// echoes here
}
這當然不行,因爲mysql_fetch_array
是第$row
下方。但是像這樣的東西是行不通的。(無限循環)。
$row = mysql_fetch_array($result);
<h1><?= $row["category_name"]; ?></h1>
<p><?= $row["description"]; </p>
while($row) {
// echoes here
}
解決此問題的最佳方法是什麼?第一個回聲的另一個數據庫查詢?
我喜歡這個解決方案!快速簡單,就是我想要的。我也會研究mysqli。我聽說過它,但不知道mysql已被棄用。 – Linkjuice57 2013-05-13 11:27:34