这是给学校的,所以如果你不想帮助我——我会提前警告你。
我在一个 html 页面中有这段代码,它引用了一个名为 dieRoller.php 的页面:
<form method="post" action="dieRoller.php">
<label>Input how many sides your die has:</label>
<input type="numberInput" id="numberInput" name="numberInput" /><br />
<input type="submit" value="submit" name="submit" />
</form>
这是 dieRoller.php:
<?php
$numberInput = filter_input(INPUT_POST, "numberInput");
$answerNum = rand(1,numberInput);
print " You've rolled a: " $answerNum;
?>
这可能是地球上最愚蠢的问题,但我不知道为什么,当我提交此表单时,我的结果实际上是 dieRoller.php 的文本文件,而不是打印输出?我搜过了 我不明白。
预先感谢您的帮助。