我有一个快速的问题。我有下面的 while 语句正在工作,但正在两次打印表中的所有内容。我是 PHP 和 MySQL 的新手,不知道为什么。有人可以帮我指出正确的方向吗?
while($row = mysql_fetch_array($result))
{
echo "<tr>";
// $row is array... foreach( .. ) puts every element
// of $row to $cell variable
foreach($row as $cell)
echo "<td>$cell</td>";
$linkID= $row['linkID'];
echo '<td><a href="update.php?linkID=' . $linkID. '">Update Status</a></td>';
echo "</tr>\n";
}