我有这段代码将显示我的数据库中的条目。
<html>
<head>
<center>
<form action="delete.php">
<a href='display.php'><input type='submit' value='Delete Records'></a></th></tr><br><br><br></form>
<?php
mysql_connect("localhost","root","");
mysql_select_db("bfp6");
$result=mysql_query("Select*From station");
$display="<table border=\"1\"><tr>
<th><font color='yellow'>ID </th>
<th><font color='yellow'>Station </th>
<th><font color='yellow'>Email </th>
<th><font color='yellow'>Password </th><td></tr>";
while($row=mysql_fetch_array($result)){
$id=$row['id'];
$stations=$row['stations'];
$email=$row['email'];
$password=$row['password'];
$z="<tr><td>".$id."</td><td>".$stations."</td><td>".$email."</td><td>".$password."</td><tr>";
$display=$display.$z;}
$display=$display."</table>";
echo $display;
?><html><body bgcolor="eb3a3a"></body></html>
这是我删除记录的代码(单击即可删除所有记录,除了id = 234的记录)
<?php
error_reporting(0);
header("location:display.php");
$con=mysql_connect("localhost","root","");
mysql_select_db("bfp6",$con);
$result=mysql_query("DELETE FROM station WHERE id<>234");
$row=mysql_fetch_array($result);
mysql_close($con);
?>
所以伙计们,我将如何为复选框添加代码,每当我点击时,比如说一个名为“标记要删除的项目”的按钮,它就会出现,当我检查这些并单击删除按钮时,只有那些被选中的才会被删除。 .please在这里帮一点忙。我不太擅长这个:(