Hi
I was editing the register.tpl (and I reckon I've done a good job) - BUT now when I view it, its displaying the countries in reverse order (Z-A). This is the code I have:
Code:
<select name=s_country size=1>
{section name=country_idx loop=$countries}
<option value={$countries[country_idx].country_code} {if $userinfo.s_country eq $countries[country_idx].country_code}selected{elseif $countries[country_idx].country_code eq $config.General.default_country and $userinfo.b_country eq ""}selected{/if}>
{$countries[country_idx].country}
</option>
{/section}
</select>
What have I done???
I was also playing with phpMyAdmin around the same time - is it something I have changed in here??
Whilst I'm on subject, is it possible to specify a country to display to start with, e.g. USA -