基于复选框选择的多个动态单选按钮

时间:2012-02-22 18:59:46

标签: php mysql arrays forms radio-button

我有一个表单选择,允许用户从动态生成的MySQL列表中选择产品,然后使用单选按钮对产品进行评级。

<input type="checkbox" value="$row[ProdID]" name="Product[]" id="Product$row[ProdID]" onclick="showhide_div($row[ProdID])" />$row[ProductName]

<div id="div$row[CatID]" style="display:none">
<input type="radio" name="ProductQual$row[ProdID]" id="PQ$row[ProdID]" value="1" /> Poor&nbsp;&nbsp;
<input type="radio" name="ProductQual$row[ProdID]" id="PQ$row[ProdID]" value="2" /> Fair&nbsp;&nbsp;
<input type="radio" name="ProductQual$row[ProdID]" id="PQ$row[ProdID]" value="3" /> Good&nbsp;&nbsp;
<input type="radio" name="ProductQual$row[ProdID]" id="PQ$row[ProdID]" value="4" /> Excellent&nbsp;&nbsp;
</div>

我想将每个“已检查”产品的选定无线电值放入MySQL表

-----------------
| ProdID(a) | 3 |
| ProdID(b) | 1 |
-----------------

我知道我需要for_each每个选定的产品,但是我无法弄清楚如何在for_each循环期间将整个$ POST与产品中的正确单选按钮相关联,以将值放入MySQL表中。

1 个答案:

答案 0 :(得分:1)

可能有一种更优雅的做事方式,但这将是我的解决方案。我将您的复选框和收音机包装在<label></label>标签中,因此文本是可点击的(也是一个很好的辅助功能指南)。每个产品都使用唯一ID生成RADIO。

<?php

echo '<label><input type="checkbox" name="product_' . $row['ProdID'] . '" id="product_' . $row['ProdID'] . '" onclick="javascript:showhide_div(' . $row['ProdID'] . ')" /> ' . $row['ProductName'] . '</label>';

echo <<<EOT
<div id="div{$row['ProdID']}" style="display:none;">
<label><input type="radio" name="productquality_{$row['ProdID']}" value="1" /> Poor</label>
<label><input type="radio" name="productquality_{$row['ProdID']}" value="2" /> Fair</label>
<label><input type="radio" name="productquality_{$row['ProdID']}" value="3" /> Good</label>
<label><input type="radio" name="productquality_{$row['ProdID']}" value="4" /> Excellent</label>
</div>
EOT;

在后端,所有评级字段都会被解析并插入表格中。

<?php

foreach ( $_REQUEST as $k=>$v){   // Step through each _REQUEST (_POST or _GET) variable

    if ( strpos( $k, 'productquality' ) !== false ){    // Only parse productquality_X variables
        $parts = explode( '_', $k );    // Split at the underscore
        $id = $parts[1];    // ID is the part after the underscore

        // Do something, like insert into MySQL.  In reality best to escape the values, to make sure to prevent injection.
        mysql_query( ' INSERT INTO `quality` ( ProdID, Rating ) VALUES ( ' . $id . ', ' . $v . '); ');
    }
}