我创建了3个文本字段,这些字段通过for循环显示。现在我关注的是如何将输入的值输入到这些文本字段中。这是代码。谢谢。
setSmallestDisplacement(float smallestDisplacementMeters)
答案 0 :(得分:2)
像LuciaAngermüller建议你可以这样做
<?php
echo '<form method = "post" action = "http://localhost:8080/sample.php">';
for($a = 0; $a < 3; $a++){
echo '<input type = "text" name = "box' . $a . '"></br>';
}
echo'<input type = "submit" name = "submit" value = "submit">';
他们可以访问$_POST['box0']
或$_POST['box1']
。
希望这会有所帮助。祝你好运:)