フォームが ajax とフォーム検証 (jquery.validationEngine) によって送信された後、値 (mysql_insert_id) を取得しようとしていますが、成功しません..
$(document).ready(function()
{
$("#form1").validationEngine('attach',
{
autoHidePrompt:true,showOneMessage:true,
onValidationComplete: function(form, status)
{
if(status === true)
{
formget(document.getElementById('form1'),'page.php');
TINY.box.show({html:'The entry (i want the id here..) has been updated successfully!',animate:false,close:false,mask:false,boxid:'success',autohide:2,top:5});
}
else
{
TINY.box.show({html:'Please check the form and try again',animate:false,close:false,mask:false,boxid:'error',autohide:2,top:5});
}
}
});
私のpage.phpファイル
$query="INSERT INTO users (userid,title,)VALUES ('".$_SESSION['id']."', '".$_REQUEST['title']."')"; $result=mysql_query($query);
$id = mysql_insert_id();