0

这是我的旧代码

$xml .=  '<select style="width:80%;margin-bottom:10px;" name="qty" class="input-text qty" id="qty">';
    foreach ($prices as $price) {
    $xml .= '<option value="'.$price['price_qty'].'">'.$price['price_qty'].' pieces - '.$price['formated_price'].' each</option>';
    }
$xml .= '</select>';

我用这段代码替换了它

$xml .=  '<select style="width:80%;margin-bottom:10px;" name="qty" class="input-text qty" id="qty">';
    for ($i=1;$i<=100;$i++) {
    $xml .= '<option value="'.$i.'">'.$i.'</option>';
    }
$xml .= '</select>';

由于某种原因循环破坏了我的网格布局。有人可以告诉我我的代码有什么问题吗?

4

1 回答 1

2

这是正确的代码: $i 与脚本的其他部分重叠

$xml .=  '<select style="width:80%;margin-bottom:10px;" name="qty" class="input-text qty" id="qty">';
    for ($c=1;$c<=100;$c++) {
    $xml .= '<option value="'.$c.'">'.$c.'</option>';
    }
$xml .= '</select>';
于 2013-09-16T22:03:50.947 回答