Welcome Guest, Not a member yet? Register   Sign In
tree menu & sub-menu using codeigniter
#3

(04-02-2015, 01:11 PM)Avenirer Wrote: You can find help here (note: is a tutorial of mine): http://avenir.ro/multi-level-unlimited-m...sub-menus/
It doesn't explain it for CodeIgniter, but it is the same principle. Give it a try.

Could you explain this codes individually.

PHP Code:
function ordered_menu($array,$parent_id 0)
{
  
$temp_array = array();
  foreach(
$array as $element)
  {
    if(
$element['parent_id']==$parent_id)
    {
      
$element['subs'] = ordered_menu($array,$element['id']);
      
$temp_array[] = $element;
    }
  }
  return 
$temp_array;

Reply


Messages In This Thread
RE: tree menu & sub-menu using codeigniter - by waqaspuri - 04-02-2015, 11:04 PM



Theme © iAndrew 2016 - Forum software by © MyBB