I am working on category management. Where i have parentId with each row. Categories can be n-level. I can recursively call php function which will return category tree array.

Now Issue is: In admin panel i want category listing page as shown below. i.e. which category is under which.
- Home
- Products (Edit) (Delete)
- Products > Product 1 (Edit) (Delete)
- Products > Product 2 (Edit) (Delete)
- Products > Product 2 > Product 2 1 (Edit) (Delete)
- Products > Product 2 > Product 2 2 (Edit) (Delete)
- Contact Us (Edit) (Delete)
I want mysql query result in same order as shown above. I am not sure how can i achieve it.
SELECT *
FROM tbl_categories
ORDER BY ???
Please guide.