Welcome Guest, Not a member yet? Register   Sign In
ecommerce backend CI
#1

Hello,

I am trying to develop ecommerce backend with C I  -->  This is my point.

Is it possible to attached ecommerce backend CI with frontend?

Can you distinguish the folder while building the backend.  For example:  for backend :

views/backend/
controllers/backend/
models/backend/

Is that possible?

If that is possible, I am going to start working.

Thanks in advance.
" If I looks more intelligence please increase my reputation."
Reply
#2

This is *not* a bug or potential bug in CodeIgniter, and should not have been posted in the CodeIgniter 3.x forum. It belongs here under "general help".
Reply
#3

Yes this can be done.

pretty much add a backend folder to the controllers, models, views folders.

For the controllers this just adds a new folder level
http://www.codeigniter.com/user_guide/ge...irectories

ie. /backend/controller_name/method

For the Models same thing
http://www.codeigniter.com/user_guide/ge...ng-a-model

$this->load->model('backend/queries');

and for Views
http://www.codeigniter.com/user_guide/ge...irectories

$this->load->view('backend/file_name');

DMyers
Reply




Theme © iAndrew 2016 - Forum software by © MyBB