Database Schema for Education/learning System

hynaratis

New Member
I am designing/building an educational system for a non-profit organisation. My query is regarding the database design of my website/webapp. What is the most efficient way of organising/storing all of the required information listed below?I have quite a few options to accomplish the goals detailed below, but I wanted to opinion of the brilliant people here on stack overflow before actually starting the project.This project will present Courses & Lessons in a guided way. Each page (of a lesson) presented to the user will contain about a paragraph or so of text. (Although technically there should be no limit to the amount of text displayed per page) After the user has read the page he/she would click next. The user would then be presented with one or two questions about the previous page (again the amount of questions should not be set in stone) which the user would then procede to answer.After answering the questions, the user would then advance to the next page, and the process would repeat until the end of the lesson, where they would be directed to the next lesson in the course.Any & all suggestions are appreciated!Here are the basic requirements/needs of my project:
  • Multiple Courses each with Multiple lessons.
  • Users should only be able to progress to the next page/lesson/course after the previous page/lesson/course had been completed/read.
  • The paragraphs should be stored in such a way that a breadcrumb address could be easily generated (i.e. Course_name > Lesson_name > Section_name > Paragraph_subject)
  • The paragraphs should also be stored so that their order inside of the lesson could easily be changed
Here are ideal features that are not exactly vital, but very much desired:
  • The users progress should be recorded in a way that would allow changes/additions to the lessons/courses without interfering with the users who have already completed said course/lesson.
Here are other features that are vital, but not really necessary to consider at this stage in development.
  • Each paragraph will have an audio clip (mp3) associated with it and an optional flash/html5 player will be generated on the page for the visually impaired.
  • A glossary will need to be implemented. Links will most likely be inserted automatically into the paragraph by a parser when being saved by the course author.
Here are the technical aspects of my project. I would prefer that the solutions presented here be centered around what I have chosen to design this project with, not the other way around.
  • Entire system will be written in PHP/MYSQL with the fuelphp framework.
  • Database queries will use the frameworks orm model when possible.
My Thoughts/Notes:
  • A fuelphp package is availible for working with a nested sets hierarchical model. (fuel-nestedsets) I have used this package before and it works brilliantly to store unlimited depth of nodes in order with NO recursion.
 

beanman2112

New Member
E-learning includes numerous types of media that deliver text, audio, images, animation, and streaming video, and includes technology applications and processes such as audio or video tape, satellite TV, CD-ROM, and computer-based learning, as well as local intranet/extranet and web-based learning. Information and communication systems, whether free-standing or based on either local networks or the Internet in networked learning, underly many e-learning processes.
 
Top