I have a list of categories stored in mysql db. The categories can have child categories at any deep level user want.
Database Table
id name parents
1 Apparel
2 Appliances
46 Apparel 1
47 Child Apparel 1
48 Other Child Category 46
Now parents column tells me which category is a child of which parent. What best data structure algorithm I can use here without recursion in PHP?