Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save syaiful-scooter/be8e37ed289c19c61ff1ffd9581a4fe8 to your computer and use it in GitHub Desktop.
Save syaiful-scooter/be8e37ed289c19c61ff1ffd9581a4fe8 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