Убедитесь, что имя модели - Меню, а имя класса - также Меню
class Menu extends CI_Model{
function show_menu()
{
$obj =& get_instance();
$obj->load->helper('url');
$menu = anchor("start/hello/fred","Say hello to Fred |");
$menu .= anchor("start/hello/bert","Say hello to Bert |");
$menu .= anchor("start/another_function","Do something else |");
return $menu;
}
}
, но загрузка класса - это 'меню' НЕ 'Меню'
function hello($name)
{
$this->load->model('menu');
$mymenu = $this->menu->show_menu();
}
надеюсь, что этобыло полезно