views:

369

answers:

8

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?

A: 

Can you be more specific about what you are having difficulty with?

eyelidlessness
A: 

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.

Click Online Design
+4  A: 

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/

csjohnst
A: 

I've tried that, I just need something more tailored to user management and actually adding items through a login-based control panel.

Click Online Design
Sorry to sound nit-picky, but it's probably best to edit your initial question with this additional information rather than adding comments. It makes the question far more readable and doesn't pollute the answers with unnecessary posts.
Shabbyrobe
A: 

Oh, and I dont understand how including your own files (such as CSS) works....

Click Online Design
Do you have an understanding of the whole Model/View/Controller ecosystem?
csjohnst
Little shaky on the model part, but I do get the rest.
Click Online Design
+3  A: 

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

csjohnst
+2  A: 

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" />
jmccartie