


How to implement the function of selecting all and deleting in php
How to implement select-all deletion in php: first set the select-all "checkbox"; then name the class ckb, and cleverly put the id value into the input; then process the id and remove the first one comma; finally operate the database in the background and handle the deletion action.
Recommended: "PHP Tutorial"
jQuery php simple method to select all and delete
Share it with everyone for your reference, the details are as follows:
<input type="checkbox" id="ckb_selectAll" onclick="selectAll()" title="选中/取消选中"> <a href="javascript:void(0);" onclick="del_()" title="删除选定数据" style="font-weight:normal">删除</a>
↑Select all checkbox
<input type="checkbox" class="ckb" id="+con.id+" value="+con.id+">
↑To delete items, the same named class is ckb, which is convenient for operation. Cleverly put the id value into the input for easy access.
function selectAll() { if ($('#ckb_selectAll').is(':checked')) { $(".ckb").attr("checked", true); //全部选中 } else { $(".ckb").attr("checked", false);//全部取消 } }
↑Selected event
function del_() { var ids = ''; $(".ckb").each(function() { if ($(this).is(':checked')) { ids += ',' + $(this).val(); //逐个获取id } }); ids = ids.substring(1); // 对id进行处理,去除第一个逗号 if (ids.length == 0) { alert('请选择要删除的选项'); } else { if (confirm("确定删除?删除后将无法恢复。")) { url = "action=del_call_record&ids=" + ids; $.ajax({ type: "post", url: "send.php", data: url, success: function(json) { if (parseInt(json.counts) > 0) { alert(json.des); location.reload(); } else { alert(json.des); } }, error: function(XMLHttpRequest, textStatus) { alert("页面请求错误,请检查重试或联系管理员!\n" + textStatus); } }); } } }
↑Deletion is handled with ajax.
↓Operate the database in the background and process deletion actions.
$ids = trim($_REQUEST['ids']); $del_sql = "DELETE FROM vicidial_call_record WHERE id IN(".$ids.")"; //print_r($del_sql);exit; if (mysqli_query($db_conn, $del_sql)) { $counts = "1"; $des = "成功"; } else { $counts = "0"; $des = "失败"; } $json_data = "{"; $json_data. = "\"counts\":".json_encode($counts).","; $json_data. = "\"des\":".json_encode($des).""; $json_data. = "}"; echo $json_data; break;
The above is the detailed content of How to implement the function of selecting all and deleting in php. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
