我從MySQL數據庫獲取數據...我要檢查每一行的指數... e.g如何找到一個數組的索引在PHP while循環
while($row=mysql_fetch_array($result)
{
i want index of $row in each row... (current Index).
}
請幫助我。 感謝
我從MySQL數據庫獲取數據...我要檢查每一行的指數... e.g如何找到一個數組的索引在PHP while循環
while($row=mysql_fetch_array($result)
{
i want index of $row in each row... (current Index).
}
請幫助我。 感謝
如果你想從數據庫索引:
<?php
...
$result = mysql_query("SELECT * FROM whatever");
while($row = mysql_fetch_array($result)) {
echo $row['index'];
# Where index is the field name containing the item ID from your database
}
...
?>
或者,如果你想指望基於輸出的項目數:
這就是我從你的問題理解..
如果我的理解是否正確,你想是這樣的
<?PHP
$i=0;
while($someThingIsTrue) {
echo $i;
$i++;
}
?>
$行沒有任何陣中的一員。所以,它根本沒有索引。
而且,我想,你不需要它要麼
'$ I = 0;'循環之前和'$我++;'在循環體結束 – zerkms