Delete Data With Ajax In Php

[Solved] Delete Data With Ajax In Php | Php - Code Explorer | yomemimo.com
Question : delete data with ajax in php

Answered by : dinesh-uprety

function del()
{	$(document).delegate(".btn-delete-employee", "click", function() {	if (confirm("Are you sure you want to delete this record?")) { var employeeId = $(this).attr('data-id'); //get the employee ID // Ajax config	$.ajax({ type: "GET", //we are using GET method to get data from server side url: 'delete.php', // get the route value data: {employee_id:employeeId}, //set data beforeSend: function () {//We add this before send to disable the button once we submit it so that we prevent the multiple click }, success: function (response) {//once the request successfully process to the server side it will return result here // Reload lists of employees	all(); alert(response) } });	}	});
}

Source : https://codeanddeploy.com/blog/php/delete-data-with-jquery-in-php-mysql-using-ajax | Last Update : Wed, 12 Jan 22

Question : delete record without a page refresh with ajax in php

Answered by : zach-88pjjlppshle

<tr data-image-id="<?php echo $r1['photo_id']; ?>">
After deleting data, run this cammand:
$("tr[data-image-id="+del_id+"]").remove();

Source : | Last Update : Sun, 11 Apr 21

Answers related to delete data with ajax in php

Code Explorer Popular Question For Php