在 codeigniter 裡的 helper 使用資料庫
如果要在 ci 的 helper 裡面使用資料庫,必須要使用 & get_instance() ,用法如下。
要呼叫資料庫都用 $ci 取代 $this
- $ci=& get_instance();
- $ci->load->database();
- //do something
- $ci->db->insert('your_table', $data);
要呼叫資料庫都用 $ci 取代 $this
留言