2015-12-09 3 views

Répondre

1

Dans le fichier .html, utilisez ajax et appelez le fichier php en ajax.

$.ajax({ 
    url:"path to php file", 
    data:{key:value},// send any data if required to php file 
    type: "POST", 
    success: function(data){ 
     alert("php code executed successfully."); 
    } 
});