我可以成功地从数据库中提取数据,但是现在使用复选框方法删除特定行时遇到问题。
我已经使用了许多不同的教程,包括以前的帖子,但它仍然不存在。
这是我的代码:
<div id="content">
<h1>Post Bulletin</h1>
<br />
<form action="insert.php" method="post">
<label for="title">Title</label>
<br />
<input type="title" name="title" id="file" required="required" placeholder="Bulletin Title" />
<br />
<br />
<label for="bulletin">Bulletin</label>
<br />
<textarea id="bulletin" name="bulletin" id="bulletin" rows="10" cols="50" required="required" placeholder="Bulletin Message"></textarea>
<br />
<input type="submit" />
</form>
<br/ >
<br/ >
<h3>Current Bulletin Posts</h3>
<?php
require('connect.php');
$data = mysql_query("SELECT * FROM bulletins ORDER BY Date_Entered DESC")
OR die("Can't access bulletins table. " . "<br />". mysql_error());
while($info = mysql_fetch_array($data))
{
Echo "<br />" . "Delete: " . "<input name='checkbox[]' type='checkbox' id='checkbox'/>" . "<br />" . "<br />";
Echo $info['Title'] . "<br />" . "<br />";
Echo $info['Bulletin'] . "<br />" . "<br />";
Echo "Posted at " . $info['Date_Entered'] . "<br />" . "<br />";
Echo "<hr>";
}
?>
我已创建复选框,但无法处理删除。
我认为“if isset”声明就足够了吗?如何将 ID 分配给复选框数组?