POST多个值

时间:2014-04-11 20:16:15

标签: php

我有一个循环,它可以生成一些可以在字段中输入的字段。我想将这些字段中的所有值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'];
}

1 个答案:

答案 0 :(得分:0)

<input name='value[$i]' type='text' />
                  ^--^---- note the []

然后

$fifth_value = $_POST['value'][5];