Welcome Guest, Not a member yet? Register   Sign In
What is wrong with this code? Why the language doesn't load?
#7

[eluser]ReyPM[/eluser]
Well something is really wrong here because I tried to load another library and get the same error:
Quote:Severity: Notice
Message: Undefined property: Brands::$load
Filename: controllers/brands.php
Line Number: 5
The file brands.php is as follow:
Code:
<?php

class Brands extends CI_Controller {
   public function __construct() {
      $this->load->helper('flexigrid');
   }
  
   public function index() {
      if (!$this->my_usession->logged_in) {
         redirect('user/login');
      }
      $data['title'] = 'Admin Brands';
      $this->load->view('brands/index', $data);
   }
  
}
I'm using Code Igniter 2.0.1 in XAMPP for Windows 7


Messages In This Thread
What is wrong with this code? Why the language doesn't load? - by El Forum - 04-04-2011, 09:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB