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 に答える