如何在输入字段中附加id?

时间:2013-02-27 11:27:44

标签: php html

如何在输入字段中附加id并在PHP的另一页上发送?

<input type="text" size="3" name="new_quantity[]" value="<?php echo $product_quantity; ?>" />

任何帮助??

1 个答案:

答案 0 :(得分:0)

试试这个:

<input type="text" size="3" name="new_quantity[<?php echo $product_id; ?>]" value="<?php echo $product_quantity; ?>" />

Channged:name="new_quantity[<?php echo $product_id; ?>]"

在另一页

print_r($_REQUEST['new_quantity']);

您可以将product_id视为关键字,value视为输入字段的值。