コード例 #1
0
?>
 <a href="https://developer.paypal.com"><?php 
_e('PayPal\'s developer sandbox', 'cart66');
?>
</a>.</p>
            </td>
          </tr>
          <tr valign="top">
            <th scope="row"><?php 
_e('PayPal Default Currency', 'cart66');
?>
</th>
            <td>
              <select name="currency_code"  id="currency_code">
                <?php 
$currencies = Cart66Common::getPayPalCurrencyCodes();
$current_lc = Cart66Setting::getValue('currency_code');
foreach ($currencies as $name => $code) {
    $selected = '';
    if ($code == $current_lc) {
        $selected = 'selected="selected"';
    }
    ?>
                    <option value="<?php 
    echo $code;
    ?>
" <?php 
    echo $selected;
    ?>
><?php 
    echo $name;