批量删除
2018-06-22 05:09:40来源:未知 阅读 ()
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<h1>批量删除</h1>
<form action="pldel.php" method="post">
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<tr>
<td>
<input type="checkbox" name="qx" onclick="checkall(this)" />
代号
</td>
<td>名称</td>
</tr>
<?php
$db = new MySQLi("localhost","root","123","mydb");
$sql = "select * from nation";
$result = $db->query($sql);
while($arr = $result->fetch_row())
{
echo "<tr>
<td>
<input type='checkbox' value='{$arr[0]}' name='item[]' class='ck' />
{$arr[0]}
</td>
<td>{$arr[1]}</td>
</tr>";
}
?>
</table>
<input type="submit" value="批量删除" />
</form>
<script type="text/javascript">
function checkall(qx)
{
var ck = document.getElementsByClassName("ck");
if(qx.checked)
{
for(var i=0;i<ck.length;i++)
{
ck[i].setAttribute("checked","checked");
}
}
else
{
for(var i=0;i<ck.length;i++)
{
ck[i].removeAttribute("checked");
}
}
}
</script>
</body>
</html>
<?php
$arr = $_POST["item"];
$db = new MySQLi("localhost","root","123","mydb");
/*foreach($arr as $v)
{
$sql = "delete from nation where code='{$v}'";
$db->query($sql);
}*/
$str = implode("','",$arr);
$sql = "delete from nation where code in('{$str}')";
//n003','n004','n005','n006
if($db->query($sql))
{
header("location:test.php");
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:利用js写全选操作
- laravel实现批量更新多条记录的方法示例 2020-02-19
- PHP批量上传图片的具体实现方法 2019-10-12
- php中删除字符串中间的空格的方法 2019-10-09
- PHP删除文件夹的方法 2019-10-09
- php递归删除目录与文件的方法 2019-08-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash