thanks for the help!

it works! :up:
I just changed the character indeces to the greek ones.
It seems, there's a non-character in position 210 though, breaking the alphabet in two! It must be an empty place, left there before the capital sigma because there are two lower case sigmas and thus, the rest of the capitals will correspond correctly with the lower case ones.
To resolve this, I have used two different loops:
PHP Code:
// now do alpha-characters
for ($i=193; $i < 210; $i++)
{
$currentletter = chr($i);
$linkletter =& $currentletter;
$show['selectedletter'] = $selectedletter == $currentletter ? true : false;
eval('$letterbits .= "' . fetch_template('memberlist_letter') . '";');
}
for ($i=211; $i < 218; $i++)
{
$currentletter = chr($i);
$linkletter =& $currentletter;
$show['selectedletter'] = $selectedletter == $currentletter ? true : false;
eval('$letterbits .= "' . fetch_template('memberlist_letter') . '";');
}
This produces a greek alphabet index! Now, when I click on the letters, ordening doesn't seem to work properly but I suppose, this has to do with the fact we're only 16 members yet.
Thanks a lot for the tip, ReCom! You have helped big deal!
Now, if you only had some advice as to how I could arrange it so that only greek letters are accepted for usernames!