php&mysql的数据删除 ajax

php中的删除  php代码
$(‘.del‘).click(function(){
        var id = $(this).data(‘id‘);
        var that = $(this);
        layer.confirm(‘确定删除‘ + id + ‘吗?‘, {
          icon: 3,
          title: ‘提示‘
        }, 
  function(index){
            $.ajax({
            url:"/json.php",
            type: ‘post‘,
            data: {id:id},
            dataType: ‘json‘,
            success: function(res) {
              console.log(res);
              layer.close(index);
              if (res.code == 1) {
                // that.parents(‘tr‘).remove();
                location.reload();
              } else {
                layer.msg(‘删除失败!‘);
              }
            }

          });
        });
      });
一个jq的函数就能实现
 
ajax代码
if($_POST){
    $ids=$_POST[‘id‘];
    $conn=new mysqli(‘localhost‘,‘root‘,‘root‘,‘qiyewangzhan‘);
    $sql="delete from product where id=$ids" ;
    $res=$conn->query($sql);
    $arr=[];
}
if($res){
$arr[‘code‘]=1;
}else{
    $arr[‘code‘]=2;
}


echo json_encode($arr);

php&mysql的数据删除 ajax

上一篇:数据库基础01-SQL基础语法


下一篇:mysql数据库存储过程