I have a text field in a MySQL database table with text values mixing English & non-English entries (given that string starts with alphabets are treated as English).
I would like to sort the values and uses it in a HTML drop down box. Data example:
Banana
Apple
Juice
西瓜
水蜜桃
ピタヤピタヤ
ピーチ
I would like to sort it as:
Apple
Banana
Juice
西瓜
ピーチ
大水蜜桃
ピタヤピタヤ
English entries first, by alphabetical ascending order; then non-English entries followed, by string length. I think I have to work it out in PHP, right ?
PHP Pseudo codes
$result_set = ( get result set from database with MySQL query )
// perform array sort ( after identifying English & non-English
echo '<select>';
foreach($row in $result_set) {
echo '<option value="{ some values here }">{ row text }</option>';
}
echo '</select>';
2 problems here:
- How to identify English & non-English entries ( in PHP / MySQL ) ?
- Is it possible to work it out only in MySQL ?
