Library Management System Script PHP

Overview

Library management system is all about organizing, managing the library and library-oriented tasks. It also involves maintaining the database of entering new books and the record of books that have been retrieved or issued, with their respective dates.

The main aim of this project is providing an easy to handle and automated library management system. This project also provides features and interface for maintaining librarian’s records, student’s history of issue and fines.

Demo : http://limas.22web.org/

Admin Login:

Email : [email protected]

Password : limas2019

Features

  1. The issue of books by online mode
  2. Columns provided to search books
  3. Requests to the librarian can be sent to provide new books in the column
  4. Generating membership ID Card
  5. Online Book Read
  6. Membership Plan

Requirements

  1. Apache 2 or higher, with:
    • mod_rewrite
  2. PHP 5 or higher, with:
    • MySQLi
  3. MySQL 5 or higher

Instructions

  1. Import the database.SQL file from the “MySQL” folder into your MySQL database using the import function available in MySQL.
  2. With a text editor open the following file located inside the ‘Script/assets/constants/’ folder: config.php, and replace what’s between the quotes (e.g: ‘YOURDBNAME’) with your MySQL settings:
     $servername = "YOUR SEVER NAME"; $username = "YOUR USERNAME"; $password = "YOUR PASSWORD"; $dbname = "YOUR DB NAME";         
  3. Upload the files from the “Script” folder on the FTP server (usually public_html folder when installing it on a domain).
  4. Set the CHMOD to 777, 775 or 775 (depending on the server configuration) to the following folders: ‘/assets/uploads/avatars’ , ‘/assets/uploads/pdfs’ and ‘/assets/uploads/covers’.

Related