Welcome Guest, Not a member yet? Register   Sign In
Can Not extends Core Controller
#3

[eluser]qpixo[/eluser]
[quote author="Samus" date="1340043947"][quote author="qpixo" date="1340042305"]
Code:
class Dashboard extends MY_Controller {

// Constructor of Dashboard
public function __construct() {
  
  parent::__construct();
  
  echo "TEST log in!!";
}

[/quote]
Obviously, you're technically not echoing it in any 'page'.

try..

Code:
class Dashboard extends MY_Controller {

// Constructor of Dashboard
public function __construct() {
  
  parent::__construct();
  
function index() {
  echo "TEST log in!!";
}
}
[/quote]

I know it's just a lazy way to do it but yours still doesn't work...


Messages In This Thread
Can Not extends Core Controller - by El Forum - 06-18-2012, 10:58 AM
Can Not extends Core Controller - by El Forum - 06-18-2012, 11:25 AM
Can Not extends Core Controller - by El Forum - 06-18-2012, 11:31 AM
Can Not extends Core Controller - by El Forum - 06-18-2012, 11:36 AM
Can Not extends Core Controller - by El Forum - 06-18-2012, 12:23 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 01:33 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 01:57 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 02:00 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 02:05 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 02:07 PM
Can Not extends Core Controller - by El Forum - 06-18-2012, 03:29 PM
Can Not extends Core Controller - by El Forum - 06-19-2012, 05:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB