Hi friends!
i have a drop down combo box which holds names of persons with php mysql order by asc query
like a's name put in 1st and after b's and c's and in last it shows z's name
now i want that if it will show tahir name in top and after that it will show all other name in asc order, is it possible?
like this
1.tahir
2.amir
3,ahmed
4.akram
5,aslam
6,bilal
7.charlie
8.zahid
i hope you got my point.
here is the query
$query = "SELECT * FROM person ORDER BY fullname ASC";