views:

68

answers:

2

Is there any open source Learning Management Softwares that is developed using php codeigniter?

a Web based software for delivering,tracking and managing training/education that focuses mainly on

Class/session scheduling, Class enrollment/registration, Teachers/Trainers,Students and Lessons/Courses/Categories/Evaluation

I'm a BSIT student currently doing my thesis.. which is, to create a Learning Management System but unfortunately i'm running out of time.. and i'm planing to use softwares to develop it fast... i'm a newbie studying codeigniter and i guess i cant make all of this from scratch..

Any Help, Suggestions or Reply is highly sought. Thank you and God Bless

A: 

I don't think there is, but a good start would be to check out the codeigniter forums.

http://codeigniter.com/forums/

xil3
+1  A: 

If you take a look at this page of the codeigniter wiki. http://codeigniter.com/wiki/Applications_Using_Code_Igniter/.

There are many examples of projects which use codeigniter, many of the applications are open source; however, what you need is non-API specific.

You need to define the data requirements for your system and design a database, if you are struggling with this here is a head-start http://www.databaseanswers.org/data_models/e_learning/index.htm.

You will find most of the database help you will ever need on that website.

Once you have basic in-roads into the database start writing code, http://codeigniter.com/user_guide/, will answer most of your questions about codeigniter.

DRL