how to delete records from database with an Ajax

前端 未结 2 1063
一整个雨季
一整个雨季 2021-01-25 00:59

I am using php,mysql and ajax to delete record from a table. The problem is that the in MySQL_query it not getting the id it shows \"id= undefined\", i tried to pass the id to t

2条回答
  •  盖世英雄少女心
    2021-01-25 01:21

         
    

    the index of your ID is 1, that is second index. not 2.

    $.ajax({
            type: "POST",
            url: "suppliernetwork/delete.php",
            data: "rowid="+arr[1]+"&supplier="+supplier,
            success: function(data){
                                                             $('.ajax').html($('.ajax input').val());
                                                             $('.ajax').removeClass('ajax');
                                                        }});
    

提交回复
热议问题