我有一个循环,它可以生成一些可以在字段中输入的字段。我想将这些字段中的所有值POST到另一个php页面中。 第一页:
for ($i = 1; $i <= 10; $i++) {
print "
<form action='2.php' method='post' id='test_form'>
<input name='value-$i' type='text' />
<input id='send' name='send' type='submit' value='Sent' />
</form>
";
}
第二页:
while ( ) {
$valuer= $_POST['value'];
}
答案 0 :(得分:0)
<input name='value[$i]' type='text' />
^--^---- note the []
然后
$fifth_value = $_POST['value'][5];