具有可变输入值PHP的表单

时间:2011-03-01 21:11:14

标签: php forms

我有一个具有可变输入值的表单。例如,一个客户购买了5个商品,因此所有商品都显示另一个客户购买了3个商品,因此只显示了三个商品。所有这些值都基于数据库

<form id="customer" class="customer" method="post" action="">
    <input type="text" name="customer1" value="" > 
    <input type="text" name="customer2" value="" > 
    <input type="text" name="customer3" value="" > 
</form>

现在我的问题是如何处理这样的表格,每次帖子变量的数量都不同。

2 个答案:

答案 0 :(得分:1)

<input type="text" name="customer[]" value="" >

答案 1 :(得分:1)

类似的东西:

$products = array();
foreach ($_POST as $key => $value) {
    array_push($products, $key, $value);
}