I am displaying a list of categories in ASC order."OTHERS" is also one of the category. I need to display all categories in ASC ORDER and "OTHERS" in last .
This is done by using PHP and MYSQL.
TABLE STRUCTURE
tale name: categories
id categoryname
1 APPLE
2 BANANA
3 Strawberry
4 Other
5 grape
For example: the above is the table structure. From the above table i need to display all the categories in ASC Order and need to display "OTHER" at last. So the output should be exactly like below.
id categoryname
1 APPLE
2 BANANA
3 grape
4 Strawberry
5 Other
Thanks n advance...