[PHP] building recursive menu with MySQL and without it
Thursday, March 13th, 2008Today I decided to share with you with two my function that I use in my code to build navigation menu for websites. First function is to build menu formated in PHP array. First we must format our menu in array like this way:
$menu = array( 'Home' => $base.'/', 'Videos' => array ( '_link' => $base.'/videos/', '_submenu' => array ( 'Categories' => array ( '_link' => $base.'/videos/categories', '_submenu' => array ( 'Fun videos' => $base.'/videos/categories/fun_videos', 'Home videos' => $base.'/videos/categories/home_videos', ), ), 'Popular' => $base.'/videos/popular', 'Best rated' => $base.'/videos/best-rated', ), ), 'Articles' => array ( '_link' => $base.'/articles', '_submenu' => array ( 'Newest' => $base.'/articles/newest', 'Archive' => $base.'/articles/archive', ), ), 'Contact Us'=> $base.'/contact_us' );
Variable $base is holding url to our website and is defined like this:
$base = 'http://www.example.com';
![Add '[PHP] building recursive menu with MySQL and without it' to Del.icio.us Add '[PHP] building recursive menu with MySQL and without it' to Del.icio.us](http://kreoton.net/wp-content/plugins/social_bookmarks/delicious.png)
![Add '[PHP] building recursive menu with MySQL and without it' to digg Add '[PHP] building recursive menu with MySQL and without it' to digg](http://kreoton.net/wp-content/plugins/social_bookmarks/digg.png)
![Add '[PHP] building recursive menu with MySQL and without it' to FURL Add '[PHP] building recursive menu with MySQL and without it' to FURL](http://kreoton.net/wp-content/plugins/social_bookmarks/furl.png)
![Add '[PHP] building recursive menu with MySQL and without it' to blinklist Add '[PHP] building recursive menu with MySQL and without it' to blinklist](http://kreoton.net/wp-content/plugins/social_bookmarks/blinklist.png)
![Add '[PHP] building recursive menu with MySQL and without it' to reddit Add '[PHP] building recursive menu with MySQL and without it' to reddit](http://kreoton.net/wp-content/plugins/social_bookmarks/reddit.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Feed Me Links Add '[PHP] building recursive menu with MySQL and without it' to Feed Me Links](http://kreoton.net/wp-content/plugins/social_bookmarks/feedmelinks.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Technorati Add '[PHP] building recursive menu with MySQL and without it' to Technorati](http://kreoton.net/wp-content/plugins/social_bookmarks/technorati.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Yahoo My Web Add '[PHP] building recursive menu with MySQL and without it' to Yahoo My Web](http://kreoton.net/wp-content/plugins/social_bookmarks/yahoo_myweb.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Newsvine Add '[PHP] building recursive menu with MySQL and without it' to Newsvine](http://kreoton.net/wp-content/plugins/social_bookmarks/newsvine.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Socializer Add '[PHP] building recursive menu with MySQL and without it' to Socializer](http://kreoton.net/wp-content/plugins/social_bookmarks/socializer.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Ma.gnolia Add '[PHP] building recursive menu with MySQL and without it' to Ma.gnolia](http://kreoton.net/wp-content/plugins/social_bookmarks/magnolia.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Stumble Upon Add '[PHP] building recursive menu with MySQL and without it' to Stumble Upon](http://kreoton.net/wp-content/plugins/social_bookmarks/stumbleupon.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Google Bookmarks Add '[PHP] building recursive menu with MySQL and without it' to Google Bookmarks](http://kreoton.net/wp-content/plugins/social_bookmarks/google.png)
![Add '[PHP] building recursive menu with MySQL and without it' to RawSugar Add '[PHP] building recursive menu with MySQL and without it' to RawSugar](http://kreoton.net/wp-content/plugins/social_bookmarks/rawsugar.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Squidoo Add '[PHP] building recursive menu with MySQL and without it' to Squidoo](http://kreoton.net/wp-content/plugins/social_bookmarks/squidoo.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Spurl Add '[PHP] building recursive menu with MySQL and without it' to Spurl](http://kreoton.net/wp-content/plugins/social_bookmarks/spurl.png)
![Add '[PHP] building recursive menu with MySQL and without it' to BlinkBits Add '[PHP] building recursive menu with MySQL and without it' to BlinkBits](http://kreoton.net/wp-content/plugins/social_bookmarks/blinkbits.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Netvouz Add '[PHP] building recursive menu with MySQL and without it' to Netvouz](http://kreoton.net/wp-content/plugins/social_bookmarks/netvouz.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Rojo Add '[PHP] building recursive menu with MySQL and without it' to Rojo](http://kreoton.net/wp-content/plugins/social_bookmarks/rojo.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Blogmarks Add '[PHP] building recursive menu with MySQL and without it' to Blogmarks](http://kreoton.net/wp-content/plugins/social_bookmarks/bmarks.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Shadows Add '[PHP] building recursive menu with MySQL and without it' to Shadows](http://kreoton.net/wp-content/plugins/social_bookmarks/shadows.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Simpy Add '[PHP] building recursive menu with MySQL and without it' to Simpy](http://kreoton.net/wp-content/plugins/social_bookmarks/simpy.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Co.mments Add '[PHP] building recursive menu with MySQL and without it' to Co.mments](http://kreoton.net/wp-content/plugins/social_bookmarks/comments.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Scuttle Add '[PHP] building recursive menu with MySQL and without it' to Scuttle](http://kreoton.net/wp-content/plugins/social_bookmarks/scuttle.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Bloglines Add '[PHP] building recursive menu with MySQL and without it' to Bloglines](http://kreoton.net/wp-content/plugins/social_bookmarks/bloglines.png)
![Add '[PHP] building recursive menu with MySQL and without it' to Tailrank Add '[PHP] building recursive menu with MySQL and without it' to Tailrank](http://kreoton.net/wp-content/plugins/social_bookmarks/tailrank.png)
