我想在php中的表的每一行中添加一个复选框。如何在php中用yes或no复选框填充数据库单元格?当我更改复选框名称例如“name”时,我有一个错误。
<?php
$con=mysql_connect("localhost","biterium_login","login");
mysql_select_db("biterium_login");
// Check connection
if (!$con){
die("به دلیل مشکل زیر، اتصال برقرار نشد : <br />" . mysql_error());
}
$result = mysql_query("SELECT * FROM member",$con);
echo "<table border='1'>
<tr>
<th>id</th>
<th>name</th>
<th>phone</th>
<th>email</th>
<th>action</th>
<th>action</th>
<th>active</th>
</tr>";
while($row = mysql_fetch_assoc($result))
{
echo "<tr>";
echo "<td>".$row['id']."</td>";
echo "<td>".$row['name']."</td>";
echo "<td>".$row['phone']."</td>";
echo "<td>".$row['email']."</td>";
echo "<td><a href='delete.php?id=".$row['id']."'>Delete</a></td>";
echo "<td><a href='FormUpdate.php?id=".$row['id']."'>Edit</a></td>";
echo "<td><input type='checkbox' value='".$row['id']."' name='".$row['id']."'></td>";
echo "</tr>";
}
echo "</table>";
?>
<a href='add.html'>ADD</a></td>
1条答案
按热度按时间uxhixvfz1#
有几种方法可以做到这一点。您可以使用如下隐藏的表单元素:
(我将元素重命名为“status”,而不是行的id,以使其更通用。)
此方法利用了这样一个事实,即提交表单时不会发送未选中的元素,但会发送隐藏的元素。如果选中复选框,复选框中的值将覆盖隐藏元素的值,因为复选框元素位于窗体中隐藏元素的后面。
或者您可以检查提交的表单数据中是否存在状态字段,并相应地设置“y”或“n”。
无论如何,这都是毫无意义的,因为您的代码不会在您展示给我们的任何地方提交表单或处理数据。