コード例 #1
0
    ?>
:</label>
          <input type="text" id="shipping-zip" name="shipping[zip]" value="<?php 
    Cart66Common::showValue($s['zip']);
    ?>
" class="ajax-tax">
        </li>

        <li>
          <label for="shipping-country" class="short"><?php 
    _e('Country', 'cart66');
    ?>
:</label>
          <select title="country" id="shipping-country" name="shipping[country]">
            <?php 
    foreach (Cart66Common::getShippingCountries() as $code => $country_name) {
        ?>
              <?php 
        $disabled = false;
        if (is_array($country_name)) {
            $disabled = isset($country_name['disabled']) ? $country_name['disabled'] : 'true';
            $country_name = $country_name['country'];
        }
        if ($disabled == 'true') {
            $disabled = 'disabled';
        }
        ?>
              <option value="<?php 
        echo $code;
        ?>
" <?php