基本上我希望我的程序做的是询问用户他们想输入多少个数字。提交值后,程序将获取该值并创建此数量的文本框。每个文本框都会接受一个数字,一旦提交,它应该接受所有数字(不包括初始文本框)并将其存储到数组或其他东西中,以便计算平均值。
我已经能够创建 x 数量的文本框,但找不到提交这些值的方法。
<html>
<body>
<form action="means.php" method = "get">
Enter sample size: <input type = "number" name = "size" <br>
<input type = "submit">
<?php
if ( isset($_GET["size"] ) )
{
$size = $_GET["size"];
$count = 1;
while ($count <= $size)
{
echo '<br><input type=\"text\" name=\"textbox".$count."\" />';
$count++;
}
}
?>
</form>
</html>
</body>
我认为问题在于创建的文本框正在被回显,因此名称为“textbox.$count”。不能用于获取数字?
任何帮助将不胜感激。提前致谢!