showing results for - "javascript call php function with parameters"
Noemi
14 Jan 2019
1var deleteClient = function(id) {
2    $.ajax({
3        url: 'path/to/php/file',
4        type: 'POST',
5        data: {id:id},
6        success: function(data) {
7            console.log(data); // Inspect this in your console
8        }
9    });
10};