Welcome Guest, Not a member yet? Register   Sign In
Trying to get started with your book "Codeigniter for Rapid PHP Application Development"
#2

[eluser]kilishan[/eluser]
Welcome to CodeIgniter! Once you get the hang of it, I'm sure you'll love it.

Luckily, this one is a simple fix:

change

Code:
$this->$base=$this->config->item(‘base_url’);
$this->$css=$this->config->item(‘css’);

to

Code:
$this->base=$this->config->item(‘base_url’);
$this->css=$this->config->item(‘css’);

Notice the difference is just removing the dollar sign.

Happy coding!


Messages In This Thread
Trying to get started with your book "Codeigniter for Rapid PHP Application Development" - by El Forum - 12-01-2009, 05:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB