如何在输入字段中附加id并在PHP的另一页上发送?
<input type="text" size="3" name="new_quantity[]" value="<?php echo $product_quantity; ?>" />
任何帮助??
答案 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
视为输入字段的值。