CodeIgniter Forums
Export Excel - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Export Excel (/showthread.php?tid=20770)



Export Excel - El Forum - 07-21-2009

[eluser]Arivusudar[/eluser]
Hi Friends,

How can i export excel my list of records form database.. i have seen more code but not working properly.. plz help me anybody.. i have used http://codeigniter.com/wiki/Excel_Plugin/ plugins but it showing error

Fatal error: Call to a member function field_data() on a non-object in D:\xampp\htdocs\vRecruit\vRec\plugins\to_excel_pi.php

How can solve this..


Export Excel - El Forum - 07-21-2009

[eluser]Gaz[/eluser]
What are you passing to the to_excel() function? You need to use it like this

Code:
$query = $this->db->get();
to_excel($query);

Obviously if $this->db->get() returns nothing, the call to to_excel() will fail.

Cheers,
Gaz.