CodeIgniter Forums
$this->load->database() problem - 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: $this->load->database() problem (/showthread.php?tid=48191)



$this->load->database() problem - El Forum - 01-07-2012

[eluser]veledrom[/eluser]
Hi,

My projects stops working on line $this->load->database();
It was fine before I formatted my Ubuntu 10.10 but no luck now.

I don't get any errors on browser. Just white screen.
config.php has correct values settings. Database exists as well.

Please help

Code:
class Loginout_model extends CI_Model {
public function __construct()
{
  parent::__construct();
  
  $this->load->database();
}
.
.
.
.
}