各位大大 ,小的新手正在看书练习php
其中一段范例卡住
范例主要是利用for循环读取数据库中的阵列
但是循环设定的变量$i 作用在哪呢?
因为他在取得资料表$row['资料表变量']时,都没有$i给他判定是第几笔啊
谢谢大家~~
以下范例::
// 逐笔读取留言的循环
for ($i=0; $i<$num; $i++) {
$row = mysql_fetch_array($res);
echo "<td width='280'><a href='message_show.php?m_id=" .
$row['m_id'] . "'>" .
"<div class='cut' style='width:280px;'>" .
htmlspecialchars($row['m_title']) . "</div></a></td>\n";
echo "<td width='300'><a href='message_show.php?m_id=" .
$row['m_id']. "'>" .
"<div class='cut' style='width:300px;'>" .
htmlspecialchars($row['m_content']) .
"</div></a></td>\n";
echo "<td width='60' align='center'><a href='mailto:" .
$row['m_mail'] . "'>" .
htmlspecialchars($row['m_user']) . "</a></td>\n";
echo "<td width='130' align='center'>" .
substr($row['m_time'], 0, 16) . "</td>\n";
echo "</tr>\n";
}
} // 输出留言的循环结束