本文整理汇总了PHP中Countries::DrawAllCountries方法的典型用法代码示例。如果您正苦于以下问题:PHP Countries::DrawAllCountries方法的具体用法?PHP Countries::DrawAllCountries怎么用?PHP Countries::DrawAllCountries使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Countries
的用法示例。
在下文中一共展示了Countries::DrawAllCountries方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: decode_text
echo decode_text($b_zipcode);
?>
" autocomplete='off' /></td>
</tr>
<tr>
<td align="<?php
echo Application::Get('defined_right');
?>
"><?php
echo _COUNTRY;
?>
</td>
<td><span class="required">*</span></td>
<td nowrap="nowrap">
<?php
Countries::DrawAllCountries('b_country', $b_country, true);
?>
</td>
</tr>
<tr>
<td align="<?php
echo Application::Get('defined_right');
?>
"><?php
echo _STATE_PROVINCE;
?>
</td>
<td></td>
<td nowrap="nowrap"><input type="text" id="b_state" name="b_state" size="32" maxlength="64" value="<?php
echo decode_text($b_state);
?>
示例2: decode_text
</td>
<td><span class="required">*</span></td>
<td nowrap="nowrap"><input type="text" id="b_zipcode" name="b_zipcode" size="32" maxlength="32" value="<?php
echo decode_text($customer_info['b_zipcode']);
?>
" /></td>
</tr>
<tr>
<td align="right"><?php
echo _COUNTRY;
?>
</td>
<td><span class="required">*</span></td>
<td nowrap="nowrap">
<?php
Countries::DrawAllCountries('b_country', !empty($b_country) ? $b_country : $customer_info['b_country'], true);
?>
</td>
</tr>
<tr>
<td align="right"><?php
echo _STATE_PROVINCE;
?>
</td>
<td></td>
<td nowrap="nowrap"><input type="text" id="b_state" name="b_state" size="32" maxlength="64" value="<?php
echo decode_text($customer_info['b_state']);
?>
" /></td>
</tr>