我想检查表单的变量。在这里,我希望“a”和“b”是 5 和 99 之间的数字。如果是这样,我想自动重定向到下一页,如果不保留到此页面。
让我通过展示我制作的一段代码来解释一下:(对不起,我花了 15 分钟来理解如何在这里编写代码,但我不明白,所以我会在必要时使用空格)
<input type="text" name="a"><br>
<input type="text" name="b"><br>
<input type="submit" value="GO!">
<?php
if (is_numeric($_POST["a"]) && is_numeric($_POST["b"]) &&
$_POST["a"]<100 && $_POST["a"]>4 && $_POST["b"]<100 && $_POST["b"]>4) {
echo "corect";
//here i want to go to the next page like registration_complete.php
}
else {
//here i want to remain to this page and show the errors to the user
}
?>
对于这个可能很简单的问题,我很抱歉,但我在谷歌上只找到了愚蠢的答案。