Welcome Guest, Not a member yet? Register   Sign In
exporting query result to csv, one line of code knocking out entire app w/o error
#3

[eluser]Brad K Morse[/eluser]
exportCsv data_model method was posted in the original thread

here it is

Code:
// model function
function exportCsv() {
    $this->load->dbutil();
    $q = $this->db->order_by('first_name','asc')->get('data');
    return $this->dbutil->csv_from_result($q, ",", "\n");
}


Messages In This Thread
exporting query result to csv, one line of code knocking out entire app w/o error - by El Forum - 11-17-2010, 09:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB