如何在php中传递选项ID或文本值

时间:2014-04-26 04:49:12

标签: php html

我想在php中获取选项id值

<select id="quantity" name="quantity" tabindex="2" onchange="calculate(this)" required autofocus>
    <option value="">Choose Your Quantity</option>
    <?php
    if($prodqty) {
        foreach($prodqty as $qty) {
            for($i = $qty->quantity_from; $i <= $qty->quantity_to; $i++) {
    ?>
            <option value="<?=$qty->discount?>" id="<?=$i?>"><?=$i?></option>

     <?php } } } ?>
     </select>

我想传递位于选项ID中的$i值以及php中的选项标记之间的值。我更喜欢通过php发送此值

0 个答案:

没有答案