CodeIgniter Forums
Table class error - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Table class error (/showthread.php?tid=15443)



Table class error - El Forum - 02-04-2009

[eluser]bobbob[/eluser]
I am using this code:
Code:
<?php
        $this->load->library('table');
        $query = $this->db->select('id, title');
        $query = $this->db->get('quicklinks');
       echo $this->table->generate($query);
      
        
        ?>

And getting this error:
Code:
Message: Undefined property: CI_Loader::$table
and this too:
Code:
Fatal error: Call to a member function generate() on a non-object

What am I missing?
This is in a view file.
I tried in a controller too. Databases are auto loaded