我一直在寻找一种方法来做到这一点。
我使用 PHP while 循环从数据库中获取一些变量:
<?php while ($row = mysql_fetch_array($query)) {
$id = $row["ID"];
?>
<script type="text/javascript">
<!--
function go_there()
{
var id= "<?php echo $id ?>"
var where_to= confirm("Are you sure you want to delete?");
if (where_to== true)
{
window.location="index.php?p=delete&id=" + id;
}
else
{
}
}
//-->
</SCRIPT>
<td><form><INPUT TYPE="button" value="Go!" onClick="go_there()"></form></td></tr>
<? } //end while
?>
有时我得到 10 个结果,然后我做 10 个 Go!底部。但是当我来到删除页面时,$is 变量关闭,原因与上一个结果相同,无论我按什么底部。
关于如何解决这个问题的任何想法,所以我得到确认框,并且仍然保留要删除的正确 ID?