db->select('*'); $this->db->from('order'); $this->db->order_by('idx DESC'); $result = $this->db->get()->result_array(); $this->data['list'] = $result; // 레이아웃 & 뷰파일 설정 $this->theme = $this->site->get_layout(); $this->view = "/order/index"; $this->active = "/order/index"; } public function view($getValue="") { $this->db->select('*'); $this->db->from('order'); $this->db->where('idx', $getValue); $this->db->order_by('idx DESC'); $result = $this->db->get()->row_array(); if(! $result) { alert("없는 페이지 입니다"); exit; } // 레이아웃 & 뷰파일 설정 $this->theme = $this->site->get_layout(); $this->view = "/order/index"; $this->active = "/order/index"; } }