PFMaBiSmAd Posted December 29, 2012 Share Posted December 29, 2012 (edited) 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.) Edited December 29, 2012 by PFMaBiSmAd Quote 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?! Quote 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... Quote Link to comment https://forums.phpfreaks.com/topic/272439-menu-script/page/2/#findComment-1402144 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.