Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
{if $countries}
<select name=countryID
onchange='JavaScript:billingAddressCheckHandler(); changeCountryHandler();'
>
{section name=i loop=$countries}
<option value={$countries[i].countryID}
{if $countryID ne NULL}
{if $countries[i].countryID == $countryID}
selected
{/if}
{else}
{if $countries[i].countryID == $smarty.const.CONF_DEFAULT_COUNTRY}
selected
{/if}
{/if}
>
{$countries[i].country_name}
</option>
{/section}
</select>
{else}
<input type=hidden name='countryID' value='NULL'>
{/if}
{if $countries}
<input type='text' size='40' name='countryID' value='NULL'>
{/if}