Ajax Call Cannot Find Php File
I am doing a ajax call , but its giving a error saying 404 file not found. $.ajax({ type : 'POST', url : 'app/lib/functions.php',
Solution 1:
maybe try it with:
$.ajax({
type : 'POST',
url : '../../app/lib/functions.php',
data : data,
success : function(data) {
}
});
or
$.ajax({
type : 'POST',
url : '../app/lib/functions.php',
data : data,
success : function(data) {
}
});
Post a Comment for "Ajax Call Cannot Find Php File"