I am trying to learn CI to use for a shopping site, but am not having luck with the official doc. Anyone know of stuff that will help?
Can you be more specific about what you are having difficulty with?
I just don't understand the concept of a framework. I don't know where to start, and how I write my own code to go with it.
We've used Code Igniter on a couple of projects and found the videos on their site to be helpful for an intro: http://codeigniter.com/tutorials/
I've tried that, I just need something more tailored to user management and actually adding items through a login-based control panel.
Oh, and I dont understand how including your own files (such as CSS) works....
Specifically for you query about CSS this is a good starter reference written by a new user: http://codeignitercamp.blogspot.com/2007/08/codeigniter-tutorial-2.html
Just found a pretty good series on the basics of it:
http://capsizedesigns.com/blog/2008/05/getting-started-with-codeigniter-part-1/ http://capsizedesigns.com/blog/2008/05/getting-started-with-codeigniter-part-2/ http://capsizedesigns.com/blog/2008/05/getting-started-with-codeigniter-part-3/
re: CSS.
I've got my CSS a separate folder at the root. (same place as 'index.php') ... /content/css/main.css
Called as:
<link href="<?=base_url();?>content/css/main.css" rel="stylesheet" type="text/css" />