これは私の古いコードです
$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>';
何らかの理由で、ループがグリッド レイアウトを壊します。誰かが私のコードの何が問題なのか教えてもらえますか?