CodeIgniter

Introduction The Student Management System is a web application designed for the School of Software at Hefei University of Technology. Its primary purpose is to allow students to easily access and query their scores and rankings, as well as to facilitate peer assessment at the end of the school year. Code Repository GitLab Screenshots
To access CodeIgniter’s native resources within your library use the get_instance() function. This function returns the CodeIgniter super object. Normally from within your controller functions, you will call any of the available CodeIgniter functions using the $this construct: $this->load->helper('url'); $this->load->library('session'); $this, however, only works directly within your controllers, your models, or your views. If you would like to use CodeIgniter’s classes from within your own custom classes you can do so as follows: