<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" />
}
}
?>
Ne yapmaya çalışıyorum onlar, giriş metin alanına bir değer kullanıcıya sormak ve sonra Yani kullanıcı 10 girer beni içeri değerlerini girmek onlar için metin girişlerinin uygun miktarda sunmak için 10 metin girişi sundu ve bir düğme falan gönderin. Nerede olduğunu, bu hat çalışmaz takdir
<input type= "text" name = "nums[]" size = "2" />
ama ben bu satırları doğru sıralama boyunca emin değilim? Ayrıca, ne bu hat ile yanlış?
if(!empty($_GET("amountOFEntry")){
teşekkürler