以下代码有问题:
<?php
$con = mysql_connect("localhost","","");
if (!$con){
die('Could not connect: ' . mysql_error());
}
mysql_select_db("abcdatabase", $con);
$ids = intval($_GET['id']);
if ($ids==0){
$id = rand (0,50);
header("Location: http://index.php/?id=$id");
}
?>
它运作良好。但我想要更多的东西。当我放入index.php
浏览器时,它会随机转到类似index.php?id=30
. 但是进入页面后index.php?id=30
,如果我按下浏览器的刷新按钮,它仍然保持在同一页面中。我希望每次刷新页面时都会随机加载新页面id
。但是如果有人试图访问该页面index.php?id=30
,他将获得该页面id=30
。
我是一个新手程序员。任何人都请帮我解决这个问题。