我已经在我的数据库中创建了一个项目表,它非常完美,但是我现在想在我输出的数据的另一列中添加一个删除按钮。
但是我只是不知道该怎么做,我确实为每个表都有一个唯一的ID,所以我可以使用它作为ID,或者你会怎么称呼它的按钮?
<?php
//Start session
//... all the connection stuff here
$result = mysql_query("SELECT * FROM feathermattresstoppers");
echo "<table border='1'>
<tr>
<th>name</th>
<th>old price</th>
<th>price</th>
<th>delete</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['name'] . "</td>";
echo "<td>" . $row['old_price'] . "</td>";
echo "<td>" . $row['price'] . "</td>";
echo "<td>"<!-- how could I add a button here? -->"</td>";
echo "</tr>";
}
echo "</table>";
?>
任何帮助,将不胜感激。