Answers for "mcrypt_decrypt function php"

PHP
3

PHP Deprecated: Function create_function()

//From
create_function( '$caps', "return '$caps';" );

//To
function($caps) {return $caps;}
Posted by: Guest on March-13-2020
0

javascript call php function with parameters

var deleteClient = function(id) {
    $.ajax({
        url: 'path/to/php/file',
        type: 'POST',
        data: {id:id},
        success: function(data) {
            console.log(data); // Inspect this in your console
        }
    });
};
Posted by: Guest on March-04-2020
-1

jquery code to trigger php function

$.ajax({ url: 'phpscriptname.php',
         data: {function2call: 'getEmployeesList', otherkey:otherdata},
         type: 'post',
         success: function(output) {
                      alert(output);
         }
});
Posted by: Guest on April-13-2020

Browse Popular Code Answers by Language