maxudaskin Posted May 6, 2012 Share Posted May 6, 2012 Hi guys, I'm just working on a script to get menu items from a database, sorted by a sort column. Each item needs to be checked to see if it has a parent, then paired with the parent. Would it be best to get all of the items at once and pair them with PHP, or get the children of each item when as a separate array? id label link parent sort 1 Home index.php 0 10 2 About about.php 0 20 3 Contact Us contact.php 2 10 Quote Link to comment https://forums.phpfreaks.com/topic/262169-sort-menu-items-in-array/ Share on other sites More sharing options...
cpd Posted May 6, 2012 Share Posted May 6, 2012 I'd probably join the table on itself. So select the main links and join any sub links to their parent ID. I think that's do-able but run some checks first. Quote Link to comment https://forums.phpfreaks.com/topic/262169-sort-menu-items-in-array/#findComment-1343578 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.