You can use this function to create dropdown menu, vertical menu, menu tree, or whatever you want.
Sample Output :
- Home
- Abou Us
- Product
- Product 1
- Product 2
- Sub Product 2.1
- Sub Product 2.2
- Sub Product 2.3
- Sub Product 2.4
- Sub Product 2.5
- Sub Product 2.6
- Sub Product 2.7
- Sub Product 2.8
- Product 3
- Product 4
- Product 5
- Product 6
- Gallery
- News
$query = mysql_query("select * from menu order by orderby");
Create array menun:
while($row=mysql_fetch_array($query)){
$data[$row['parent_id']][]=$row;
}
Function :
getMenu($arrMenu,$parent,$menuId,$title,$link)
$arrMenu -> array menu
$parent -> first parent menu
$menuId -> field name id menu
$title -> field name title menu
$link -> field name link menu
<?=getMenu($data,0,'id','name','link');?>
Download Link
http://www.4shared.com/zip/6CmblAqr/php_function_create_menu.html
2:10 AM
Posted in: 

0 comments:
Post a Comment