<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Home extends MY_Controller {
public function __construct(){
parent::__construct();
}
}
The code stops executing after calling the parent constructor, without giving absolutely any error messages. If I echo something before constructor call, it is echoed.If i remove the database from auto load library it will display error message .I have configured correct database details on the database file.Any one please help me?