我有这个数据库字段用作表单输入值'。 $品种[“价格”。 '我也有'。 $各种[ '大小']。 '带有产品名称的数据库字段,但我不知道用于将此大小数据库字段指定为输入表单属性的值的另一种形式输入属性?
我觉得我已经用完了属性来将更多的值传递到price to cart.php旁边的其他值。
谢谢你的脚本如下。
<form action="cart.php" method="post">
foreach($product['varieties'] as $variety){
echo'<input style="width:10px; margin-left:9px; " name="price[]" type="checkbox" value="' . $variety['price']. '" />';
}
</form>
答案 0 :(得分:0)
list()
完全正确,是的。
使用php脚本尝试这样的事情: - 将表单提交到另一个脚本,比如carttest.php - 将此代码放入carttest.php。
<?php
echo "<pre>";
print_r($_POST);
echo "</pre>";
?>
您将看到您需要处理的数据结构。从那里,你可能能够解决它。另请参阅有关如何以html格式处理数组的一些信息。