我在 html 中创建了一个接收数据库条目的表。现在我希望能够编辑和删除条目。因此,如果我单击 X 按钮,则必须删除所选行。我知道我需要通过 sql 查询来执行此操作,以便表根据数据库条目进行更改。但是我怎么能这样做,因为它需要知道哪一行属于那个特定的删除按钮?
<div id="customers">
<table id="customerTable">
<tr>
<td>First Name</td>
<td>Last Name</td>
<td>Company</td>
<td>Adress</td>
<td>Wijzig</td>
<td>Verwijder</td>
</tr>
<?php
//connect to database
include_once('mysql_connect.php');
// Select database
mysql_select_db("etn207") or die(mysql_error());
// SQL query
$strSQL = "SELECT * FROM customer";
// Execute the query (the recordset $rs contains the result)
$rs = mysql_query($strSQL);
// Loop the recordset $rs
// Each row will be made into an array ($row) using mysql_fetch_array
while($row = mysql_fetch_array($rs)) {
// Write the value of the column FirstName (which is now in the array $row
echo '<tr>';
echo '<td>'."<center>".$row['firstname']."<br>"."</center>".'</td>';
echo '<td>'."<center>".$row['lastname']."<br>"."</center>".'</td>';
echo '<td>'."<center>".$row['company']."<br>"."</center>".'</td>';
echo '<td>'."<center>".$row['adress']."<br>"."</center>".'</td>';
echo '<td>'."<center>".'<img src="images/edit.png" width="20px" height="20px" border=0>'."<br>"."</center>".'</td>';
echo '<td>'."<center>".'<img src="images/delete.png" onClick="" width="20px" height="20px" border=0>'."<br>"."</center>".'</td>';
echo '</tr>';
}
// Close the database connection
mysql_close();
?>
</table>
</div>