这是我的旧代码
$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>';
出于某种原因,循环破坏了我的网格布局。有人能告诉我我的代码有什么问题吗?
答案 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>';