Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

xóa khỏi cơ sở dữ liệu sau khi đóng trình duyệt

Bạn có thể sử dụng sự kiện Javascript để bắt trình duyệt đóng và gửi yêu cầu ajax tới một số tập lệnh sẽ xóa dữ liệu giỏ hàng:

ĐÃ CẬP NHẬT

<script language="javascript">
function fnUnloadHandler() {
  xmlhttp=null; 
  if (window.XMLHttpRequest) 
     {// code for Firefox, Opera, IE7, etc. 
        xmlhttp=new XMLHttpRequest(); 
     } 
  else if (window.ActiveXObject) 
     {// code for IE6, IE5 
        xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
     } 

  if (xmlhttp!=null) 
     {  
        xmlhttp.open("GET","http://yourhost/del_cart_actionFile.php",true); 
        xmlhttp.send(null); 
     } 
     else 
     { 
        alert("Your browser does not support XMLHTTP."); 
     } 
}
</script>
<body onbeforeunload="fnUnloadHandler()">
</body>


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Dữ liệu quá dài cho cột - tại sao?

  2. Làm cách nào để nối các chuỗi từ một truy vấn con thành một hàng trong mysql?

  3. Lỗi:Máy khách không hỗ trợ giao thức xác thực do máy chủ yêu cầu; xem xét nâng cấp máy khách MySQL

  4. php + mysql + google map

  5. jQuery Autocomplete (Remote) - ví dụ