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

溫馨提示×

溫馨提示×

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

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

如何在PHP中使用Ajax實現一個刪除數據功能

發布時間:2021-02-15 10:08:17 來源:億速云 閱讀:138 作者:Leah 欄目:開發技術

如何在PHP中使用Ajax實現一個刪除數據功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

一 代碼

conn.php:

<?php
  $conn = mysql_connect("localhost", "root", " ") or die("連接數據庫服務器失敗!".mysql_error()); //連接MySQL服務器
  mysql_select_db("db_database27",$conn); //選擇數據庫db_database27
  mysql_query("set names utf8"); //設置數據庫編碼格式utf8
?>

del.php:

<?php
  include_once("conn/conn.php");//包含數據庫連接文件
    $id=$_GET['id'];//把傳過來的參數值賦給變量$i
    $sql=mysql_query("delete from tb_demo02 where id=".$id);//根據參數值執行相應的刪除操作
    if($sql){//如果操作的返回值為true
     $reback=1;//把變量$reback的值設為1
    }else{
     $reback=0;//否則變量$reback的值設為0
    }
    echo $reback;//輸出變量$reback的值
?>

index.js:

function del(id){
    var xml;
    if(window.ActiveXObject){//如果是瀏覽器支持ActiveXObjext則創建ActiveXObject對象
     xml=new ActiveXObject('Microsoft.XMLHTTP');
    }else if(window.XMLHttpRequest){//如果瀏覽器支持XMLHttpRequest對象則創建XMLHttpRequest對象
     xml=new XMLHttpRequest();
    }
    xml.open("GET","del.php?id="+id,true);//使用GET方法調用del.php并傳遞參數的值
    xml.onreadystatechange=function(){//當服務器準備就緒執行回調函數
     if(xml.readystate==4 && xml.status==200){//如果服務器已經傳回信息并未發生錯誤
        var msg=xml.responseText;//把服務器傳回的值賦給變量msg
        if(msg==1){//如果服務器傳回的值為1則提示刪除成功
         alert("刪除成功!");
      location.reload();
        }else{//否則提示刪除失敗
         alert("刪除失敗!");
         return false;
        }
   }
    }
    xml.send(null);//不發送任何數據,因為數據已經使用請求URL通過GET方法發送
}

index.php:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>分組統計</title>
<link rel="stylesheet" type="text/css" href="mystyle.css" rel="external nofollow" >
</head>
<body>
<script type="text/javascript" src="index.js"></script>
<center>
<!--banner-->
<table width="798" border="0" cellpadding="0" cellspacing="0">
  <tr>
      <td height="112" background="images/banner.jpg"></td>
  </tr>
</table>
<?php
include_once("conn/conn.php");
?>
<table width="780" border="0" cellpadding="0" cellspacing="0">
<form name="form1" id="form1" method="post" action="deletes.php">
 <tr>
     <td height="20" width="5%" class="top">&nbsp;</td>
  <td width="5%" class="top">id</td>
  <td width="30%" class="top">書名</td>
  <td width="10%" class="top">價格</td>
  <td width="20%" class="top">出版時間</td>
  <td width="10%" class="top">類別</td>
    <td width="10%" class="top">操作</td>
 </tr>
<?php
    $sqlstr1 = "select * from tb_demo02 order by id";//按id的升序查詢表tb_demo02的數據
    $result = mysql_query($sqlstr1,$conn);//執行查詢語句
    while ($rows = mysql_fetch_array($result)){//循環輸出查詢結果
?>
 <tr>
  <td height="25" align="center" class="m_td">
    <input type=checkbox name="chk[]" id="chk" value=".$rows['id'].">
    </td>
    <td height="25" align="center" class="m_td"><?php echo $rows['id'];?></td>
    <td height="25" align="center" class="m_td"><?php echo $rows['bookname'];?></td>
  <td height="25" align="center" class="m_td"><?php echo $rows['price'];?></td>
    <td height="25" align="center" class="m_td"><?php echo $rows['f_time'];?></td>
    <td height="25" align="center" class="m_td"><?php echo $rows['type'];?></td>
    <td class="m_td"><a href="#" rel="external nofollow" onClick="del(<?php echo $rows['id'];?>)">刪除</a></td>
 </tr>
<?php
    }
?>
<tr>
    <td height="25" colspan="7" class="m_td" align="left">&nbsp;&nbsp;</td>
</tr>
</form>
</table>
<!--show-->
 <table width="798" border="0" cellpadding="0" cellspacing="0">
  <tr>
   <td height="48" background="images/bottom.jpg">&nbsp;</td>
  </tr>
</table>
</center>
</body>
</html>

二 運行結果

如何在PHP中使用Ajax實現一個刪除數據功能

看完上述內容,你們掌握如何在PHP中使用Ajax實現一個刪除數據功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

财经| 平阴县| 临高县| 山阳县| 夏邑县| 乐清市| 白城市| 武穴市| 巴林右旗| 秦皇岛市| 揭东县| 屯门区| 建瓯市| 达日县| 凌源市| 洞口县| 阜阳市| 宜州市| 库车县| 辽宁省| 汶上县| 瑞金市| 东源县| 栾川县| 鄂州市| 永城市| 大冶市| 巢湖市| 东海县| 江都市| 广河县| 城口县| 汝阳县| 安新县| 武功县| 桑植县| 巴彦淖尔市| 天峻县| 荆州市| 融水| 隆回县|