我想制作一个脚本,允许用户猜测数字直到找到正确的数字。这个想法是 php 使用rand()来“想象”一个数字。用户的点击次数不受限制。但问题是用户必须在他的任务开始时找到与 php "imagine" 相同的数字,并且每次我输入新数字时我的脚本都会重新加载并总是输出新的随机数。我应该怎么做才能解决这个问题?提前致谢。
$r= rand("1","10");
if (isset($_POST['unos'])){
$unos = $_POST['unos'];
if ($unos==$r){
echo "Congratulations you did not miss the center";
}
elseif ($unos<$r){
echo "your number is less then quested number</br>try again";
}
elseif ($unos>$r){
echo "your number is higher then quested number</br>try again";
}
}
else{
echo "Go!";
}
html
<form action="?" method="post">
<input type="number" name="unos" id="unos">
<input type="submit" value="Start">
</form>