PHP Emberjs, JQuery Ajax.
.
$.ajax ({
type: "POST",
url: "../model/my_model.php",
data:{choosen_id: choosen_id,contact_age: contact_age },
}).done(function(data) {
data_formated = '<div class="formated_data">'+data+'</div>';
$(".dialog-window").html(data_formated);
}).fail(function(x,s,e) {
alert(s+": "+e);
alert('detail button failed!');
});
Ajax PHP EmberJS.
, .