In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-22 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article mainly introduces "how to achieve php one-time deletion of foreground checkbox multi-selected content". In daily operation, I believe that many people have doubts about how to achieve php to delete foreground checkbox multi-selected content at one time. The editor consulted all kinds of materials and sorted out simple and easy-to-use operation methods. I hope it will be helpful for everyone to answer "how to php delete foreground checkbox multi-selected content at one time". Next, please follow the editor to study!
The copy code is as follows:
SQL:$SQL= "delete from `doing` where id in ('1Jing 2Jing 3Jing 4')"
The data are separated by commas.
Form:
The copy code is as follows:
Good $ID_Dele=$_POST ['ID_Dele'] will be an array. Although PHP is weakly typed, it is not as weak as ASP.
ASP can directly:
SQL= "delete from [doing] where id in ('" & ID_Dele& ")" to delete. But PHP can't put $ID_Dele directly into it. Because $ID_Dele is not'1 ID_Dele 2 ~ 3 ~ 4'Oh, because $1 is an array with keys and values.
Well, it's not difficult in PHP. There happens to be a function: implode (), by the way. A function that is the opposite of split ()\ explode (), the latter two are separated by a character (such as a comma), while the former can be concatenated into strings.
Therefore:
The copy code is as follows:
$ID_Dele= implode (",", $_ POST ['ID_Dele'])
$SQL= "delete from `doing` where id in ($ID_Dele)"
At this point, on the "how to achieve php one-time deletion of the foreground checkbox multi-selected content" study is over, I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.