91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php中怎么實現批量刪除操作

發布時間:2021-07-27 15:29:43 來源:億速云 閱讀:167 作者:Leah 欄目:開發技術

本篇文章為大家展示了php中怎么實現批量刪除操作,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

具體內容如下

php中怎么實現批量刪除操作

1.批量刪除頁面 piliangcaozuo.php

<body>
<form action="shanchu.php" method="post">
<table width="100%" border="1" cellpadding="0" cellspacing="0">
  <tr>
    <td><input type="checkbox" name="qx" onclick="quanxuan(this)"/>代號</td>
    <td>名稱</td>   
  </tr>
  <?php
   require"DBDA.class1.php";
   $db = new DBDA();
   $sql = "select * from nation";
   $arr = $db->query($sql);
   foreach($arr as $v)
  {
    echo "<tr>
        <td><input type='checkbox' name='ck[]' class='ck' value='{$v[0]}'/>{$v[0]}</td>
        <td>{$v[1]}</td>   
       </tr>";
  }
  ?>  
</table>
<input type="submit" value="批量刪除" />
</form>
</body>
<script type="text/javascript">
function quanxuan(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>
</html>

引用的封裝類 DBDA.class1.php

<?php
class DBDA
{
  public $host = "localhost";
  public $uid = "root";
  public $pwd = "123";
  public $dbname = "test_123";
  //執行SQL語句返回相應的結果
  //$sql 要執行的SQL語句
  //$type 代表SQL語句的類型,0代表增刪改,1代表查詢
  function query($sql,$type=1)
  {
    $db = new MySQLi($this->host,$this->uid,$this->pwd,$this->dbname);
    
    $result = $db->query($sql);
    
    if($type)
    {
      //如果是查詢,顯示數據
      return $result->fetch_all();
    }
    else
    {
      //如果是增刪改,返回true或者false
      return $result;
    }
  }
}

2.刪除處理界面 sanchu.php

<?php
$arr = $_POST["ck"];

require"DBDA.class.php";
$db = new DBDA();
//delete from nation where code in('n001','n002','n003')

$str = implode("','",$arr); 
$sql = "delete from nation where code in('{$str}')";
/*echo $sql;*/
if($db->query($sql,0))
{
  header("location:piliangcaozuo.php");
}

上述內容就是php中怎么實現批量刪除操作,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

上林县| 阳西县| 广汉市| 金寨县| 舞阳县| 宜城市| 晋城| 乐山市| 安庆市| 长治县| 宁陕县| 铜鼓县| 崇信县| 商河县| 新源县| 阿尔山市| 西昌市| 隆林| 顺平县| 肥西县| 秭归县| 大渡口区| 九龙城区| 麟游县| 惠水县| 华阴市| 广安市| 三原县| 五寨县| 揭西县| 仁寿县| 南部县| 望谟县| 乐亭县| 工布江达县| 安达市| 边坝县| 昭平县| 桦南县| 金堂县| 本溪市|