php - Can CodeIgniter Helper Functions use database functions? -
one of codeigniter controller functions needs call recursive function part of functionality. function call chokes if put inside controller class, , can't access database functions ($this->db->get())
if put outside class. making helper function fix problem?
you can instance:
$ci =& get_instance();
after able use $ci->db
queries..
Comments
Post a Comment