PFMaBiSmAd Posted December 29, 2012 Share Posted December 29, 2012 If you change this code - while($result = mysql_fetch_assoc($query){ $startList[] = $result; } To this - while($result = mysql_fetch_assoc($query){ $refactorList[$result['assoc_menu']][] = $result; } you can eliminate that entire middle loop. To detect if there's only one item in the menu, inside the last foreach(){} loop, you would test how many entires are in the $menu array using count and decide if you need to output the link as a button or loop over the $menu array and output it as the drop-down menu (the existing contents of that foreach(){} loop.) Link to comment https://forums.phpfreaks.com/topic/272439-menu-script/page/2/#findComment-1402015 Share on other sites More sharing options...
JakkkeM Posted December 30, 2012 Author Share Posted December 30, 2012 Still null. Why is this so difficult?! Link to comment https://forums.phpfreaks.com/topic/272439-menu-script/page/2/#findComment-1402127 Share on other sites More sharing options...
JakkkeM Posted December 30, 2012 Author Share Posted December 30, 2012 Managed to get a working solution. Had my friend make up an OOP Code... Link to comment https://forums.phpfreaks.com/topic/272439-menu-script/page/2/#findComment-1402144 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.