Student Management System With PHP and MySQL

A student data management source code has been developed using the CodeIgniter framework, with basic features including:

  • Student profile management (creating, editing, deleting data);
  • Academic advisor profile management (creating, editing, deleting data);
  • Setting up seating arrangements within the school;
  • Generating statistical reports and exporting data.

Download Free Student Management System In CodeIgniter and PHP, MySQL with source code.



* How to install script on localhost:

  • Download and install a local web server such as AMPPS/XAMPP/WAMP to run our PHP scripts;
  • Download and extract the script and copy it to the web server directory;
  • Access phpMyAdmin to create a new database, then import file cisms.sql database;
  • Open file database.php (in directory application/config/database.php) to configuration database connection:

$db['default'] = array(

'hostname' => 'localhost',

'username' => '',

'password' => '',

'database' => '',

'dbdriver' => 'mysqli',

)

  • Access project with URL : http://localhost/project_name/
  • Default login account:: admin@gmail.com / Password@123


Previous Post Next Post