删除多条记录的有关问题

WBOY
Release: 2016-06-13 13:50:20
Original
871 people have browsed it

删除多条记录的问题
删除多条记录的问题

用户管理页面,删除单条的记录我现在已经掌握了,可是如何一次删除多条记录呢?

我知道用循环,但是具体如何取得选中的那些记录的id呢?

哪位大哥帮我写下完整的代码吧。。。

我的代码:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><script language="javascript">
function CheckAll(form)
  {
  for (var i=0;i<form.elements.length;i++)
    {
    var e = form.elements[i];
    if (e.name != 'chkall')
       e.checked = form.chkall.checked;
    }
  }
</script>

Copy after login
用户管理
用户名 状态 编辑 删除
编辑 删除
 


------解决方案--------------------
通常删除就是把所有的id放在一个数组里如s[],这是多个id,checkbox,value是
每条记录对应的id,
公用一个名s[],如果选择哪个提交表单就是一个数组啊,然后$expr = join(",", $_POST['s']);
这样执行时delete from table where id in ($expr )
就可以啊
------解决方案--------------------
提交之后:

PHP code


$wyx_id=$_POST['wyx_id'];

foreach($wyx_id as $value)
{
$sql="delete from table where id=$value";
}
这样就OK了
<br><font color="#e78608">------解决方案--------------------</font><br><input type="checkbox" name="ids[]" value="这里要输入id"><br>post 过去就是<br>$ids[0]=id1;<br>$ids[1]=id2; 这个形式,楼上的已经说的很明白了.
<br><font color="#e78608">------解决方案--------------------</font><br>多条主要用条件语句来控制。<br><br>比如说id in ...,或者id > ... 又或者 id not in ...<br><br>等等。
<br><font color="#e78608">------解决方案-------------------- <div class="clear">
                 
              
              
        
            </div></font>
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!