Hello everyone,
i am using the following code ajax code to insert in table but unable to get the result
$.ajax({
url: 'subcriberList.php',
data: {'email' : email,'name' : name},
type: 'post',
success: function(success)
{
swal({
title: "Thank you for subscribing!",
icon: "success",
});
}
});