Can you help me, I will try to crud application in this one loaddata(); it's my function. any other user adds data then without refresh show in my table how to this possible.
function loaddata() {
$.ajax({
url : 'load.php',
type : 'POST',
success : function (data) {
$("#table-data").html(data);
}
});
}
This is my function any user adds data than this function automatically calls how to possible.
Currently after the refresh page show all data but I will try automatically showplace help me...