我有一个 jquery 保存脚本,例如:
naam = prompt('Give a name for your file.');
if(naam != null)
{
var div_contents = $("#print").html();
$.post("save.php", { 'contents': div_contents,'naam':naam });
alert('Your file is save as : '+ naam);
window.location.replace("index.php?id=latest");
}
else
{
alert('Not saved');
}
我在 save.php 中保存了一个 div,它在数据库中创建了一个新 id
我想要达到的是
window.location.replace("index.php?id=latest");
id=latest 必须变成(id=id from last saved file)。
我试过
$q = "select MAX(id) from Moodboards";
$result = mysql_query($q);
$data = mysql_fetch_array($result);
$MBId = $data[0];
window.location.replace("index.php?id="+MBId);
和
var MBID =
<?php
$q = "select MAX(id) from Moodboards";
$result = mysql_query($q);
$data = mysql_fetch_array($result);
$MBId = $data[0];
echo $MBId ?>
window.location.replace("index.php?id="+MBId);
他们都失败了。
如何在 if(naam !=null) 语句中运行查询?