Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When i load the model blogmodel.php it causes a white screen, but if i comment out the load model, its working.

my controller blog.php

<?php
class Blog extends CI_Controller {

public function index()
{
    $this->load->model('blogmodel');

    $data['links'] = array('Pages','Modules','Users');

    $data['title'] = "SWAN";
    $data['heading'] = "SWAN";  
    $data['query'] = $this->db->get('admin');


    $this->load->view('blogview',$data);
}

}

?>

my model blogmodel.php

<?php
    class Blogmodel extends CI_Model {

    function__construct()
    {
        parent::__construct();
    }
}
?>

I followed the user guide and I don't know what I did wrong. I've switched on the display error in php.ini.developing on 11.10 ubuntu. Tested on chrome and it gives me a server error

share|improve this question
You have written function_construct(). Shouldn't it be function __construct(). And also parent::__construct() – Vikk Oct 21 '11 at 5:03
i've changed the code and it still shows a blank screen on Firefox and a server error on chrome. But when I load database information using the controller it gets the info. – Klipnov Oct 21 '11 at 5:14
2  
You still have function__construct. It should be function __construct (i.e. with a space). I don't know if it will solve your problem. Everything else looks fine to me. – Vikk Oct 21 '11 at 5:34
thanks ViKAwesome, I changed it to function __construct and it worked. Silly mistake – Klipnov Oct 21 '11 at 8:26
A word of warning here; You should avoid closing php tags ?> at the end of your class – Garbit Jan 12 '12 at 16:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.