2.4k questions

2.4k answers

99.5k users

Categories

0 votes
120 views

Is CodeIgniter front end or backend?

in CodeIgniter (CI) by (46.5k points)

1 Answer

0 votes

You can use CI as a backend, no doubt about that. Its a full fledged MVC framework. But as it is a MVC framework, the controllers used to return views where you display data from controllers. If you are using CI just as a backend, then you have to just return data in json format from your controller instead of a view.

by (46.5k points)
...