我正在尝试创建一个管理员页面,他可以查看所有汽车。另外,每个表格行中都有一个删除按钮。 我试图将html表行与数据库表行相关联,如果我按某行的删除按钮,则我希望删除数据库和html中的行(当然是彼此相关的行)
我做了这个表行,我已经有数据库表。
<form class="div2">
<table id="results" >;
<tr>
<th>Mileage</th>
<th>Power</th>
<th>Fuel</th>
<th>Gearbox</th>
<th>Price</th>
<th>Type</th>
<th>Year</th>
<th>Emission</th>
<th>Color</th>
<th>Doors</th>
<th>Seats</th>
<th>Vehicule Type</th>
<th>Delete Button</th>
</tr>
<?php
$db_name="car_database";
$mysql_username="root";
$mysql_password="RoudyRahme98";
$server_name="localhost";
$ conn = mysqli_connect($ server_name,$ mysql_username,$ mysql_password,$ db_name); $ sql = mysqli_query($ conn,“ SELECT * from cars”);
while($row = mysqli_fetch_array($sql))
{
echo
'<tr>';
echo '<td>'.$row["mileage"].'</td>';
echo '<td>'.$row["power"].'</td>';
echo '<td>'.$row["fuel"].'</td>';
echo '<td>'.$row["gearbox"].'</td>';
echo '<td>'.$row["price"].'</td>';
echo '<td>'.$row["type"].'</td>';
echo '<td>'.$row["year"].'</td>';
echo '<td>'.$row["emission"].'</td>';
echo '<td>'.$row["color"].'</td>';
echo '<td>'.$row["doors"].'</td>';
echo '<td>'.$row["seats"].'</td>';
echo '<td>'.$row["vehicletype"].'</td>';
echo '<td> <input type="submit" name="submit" value="Delete">
</td>';
echo '</tr>';
}
echo ' </table> ';