There is scenaria when I fetch results from mysql table using PHP. The results have a column named as status. That column has multiple values like follow up, won and lost. I want to show the results in this order using PHP
- Follow up
- Won
- Lost
How can I achieve this?
I am looking at PHP sort functions but not getting the result I want. So need a solution to get the results in the same way I mentioned.