Reports in Codeigniter
问题 What is the most simplist way to generate reports in Codeigniter framework? Is there any library available to do this task? Except charting what are the other resources to do this. 回答1: Found a nice solution myself. If you want to generate reports in csv format it is very easy with codeigniter. Your model function function index(){ return $query = $this->db->get('my_table'); /* Here you should note i am returning the query object instead of $query->result() or $query->result_array() */ } Now