php for loop打破网站布局

时间:2013-09-16 21:10:34

标签: php css

这是我的旧代码

$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>';

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

1 个答案:

答案 0 :(得分: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>';