Skip to content

mohammedouahman/library-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Library Database

Simple system using PHP + MySQL to manage books.

Features

  • Add new books
  • Edit existing books
  • Delete books
  • List all books

Setup

  1. Create a MySQL database named library_db.
  2. Import the table:
CREATE TABLE books (
    id INT AUTO_INCREMENT PRIMARY KEY,
    title VARCHAR(255) NOT NULL,
    author VARCHAR(255) NOT NULL,
    year YEAR NOT NULL,
    genre VARCHAR(100)
);
  1. Update db.php with your MySQL credentials.
  2. Run on a local server (XAMPP, WAMP, or LAMP).

License

MIT

About

Simple system using MySQL + PHP to manage books.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published