Skip to content

Instantly share code, notes, and snippets.

@teknosains
Created March 14, 2020 08:47
Show Gist options
  • Save teknosains/b3b8e4921f36eed306d5840185338465 to your computer and use it in GitHub Desktop.
Save teknosains/b3b8e4921f36eed306d5840185338465 to your computer and use it in GitHub Desktop.
<?php
class Menu_model extends CI_Model
{
public function fetchMenu($parent_id) {
return $this->db->select('*')
->from('menu')
->where('parent_id', $parent_id)
->get()->result_array();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment