php method to quickly delete articles: first on the article list page; then name the multi-select box "$del_id[]", the value is the article ID number; finally process the page, the code is [$del_num=count ($del_id)].
[Related learning recommendations: php programming (video)]
php method to quickly delete articles:
1. First, on the article list page (list.php), name the multi-select box :"$del_id[]", the value is the article ID number.
For example (list.php):
<form name="del_form" action="del.php" method="post"> <?php $result=mysql_query("select * from news"); while($rs=mysql_fetch_array($result)){ ?> <input name="del_id[]" type="checkbox" id="del_id[]" value="<?=$rs[id]?>" /><?=$rs[title]?> <?php } ?> </form>
2. Processing page (del.php):
<?php if($del_id!=""){ $del_num=count($del_id); for($i=0;$i<$del_num;$i++){ mysql_query("Delete from news where id='$del_id[$i]'"); } echo("<script type='text/javascript'>alert('删除成功!');history.back();</script>"); }else{ echo("<script type='text/javascript'>alert('请先选择项目!');history.back();</script>"); } ?>
If you want to learn more about programming, please stay tuned php training column!
The above is the detailed content of How to quickly delete articles in php. For more information, please follow other related articles on the PHP Chinese website!