CIでjqueryフォーム送信を使用しようとしていますが、phpファイルから戻り値を取得できません。
$(document).ready(function($){
$("#submit_btn").click(function(){
var response = $.ajax({
type: "POST",
url: "send_email.php",
data: $(commentForm).serialize()
}).responseText;
.......
here i want to get value return from PHP so that i can print that value
like bellow
.......
$('#commentForm').html('<h5>Thanks</h5>'+here is result from php);
return false;
});
});