<form action = "numbericalInput.php" method = "Get">
Please enter the number of input areas you wish
<input type = "text" name = "amountOfEntry"/>
<input type = "submit" name = "GO"/>
</form>
<?php
if(!empty($_GET("amountOFEntry")){
for($i = 0; $i < $_GET("amountOFEntry"); $i++){
<input type= "text" name = "nums[]" size = "2" />
}
}
?>
私がやろうとしているのは、ユーザーにテキスト領域に値を入力してから、値を入力するための適切な量のテキスト入力を提示するようにユーザーに依頼することです。したがって、ユーザーは 10 を入力します。提示された10個のテキスト入力と送信ボタンか何か。この行が機能しないことを感謝します
<input type= "text" name = "nums[]" size = "2" />
しかし、それは正しい種類の線に沿っていると確信していますか? また、この行の何が問題になっていますか?
if(!empty($_GET("amountOFEntry")){
ありがとう