Jump to content

JakkkeM

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.