我目前是做从index.php 这页面 输入好from资料 submit出去
资料就用ajax post方式传过去edit.php
然后edit.php再接参数 下 sql 这边已成功可以运行
然后我现在我想要 edit.php下完SQL后 取$lastID = mysql_insert_id();
取$lastID inssert产生出的sql id 再回传到 index.php 的 javasciprt 里的 alert("
成功的单据:" );
想请问版上大大我该如何做才会有?
Javascript index.php
$("#addsubmit").on('click', function () {
$.ajax({
url:"edit.php",
data: '&' + $('#addprepayment').serialize() ,
type: "POST",
datatype: "json",
success: function(msg){
alert("成功的单据:" );
return false;
},
error:function(xhr, ajaxOptions, thrownError){
alert("错误\");
}
});
});
PHP edit.php
$lastID = mysql_insert_id();