├── .github └── workflows │ └── php.yml ├── README.md ├── additem.php ├── assets ├── css │ ├── bootstrap.min.css │ └── login.css ├── images │ ├── fav.png │ ├── logo.png │ └── logo2.png └── js │ └── bootstrap.min.js ├── config.php ├── delete.php ├── edit.php ├── index.html ├── inventorymanagement.sql ├── login.php └── table.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/README.md -------------------------------------------------------------------------------- /additem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/additem.php -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/css/login.css -------------------------------------------------------------------------------- /assets/images/fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/images/fav.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/images/logo2.png -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/config.php -------------------------------------------------------------------------------- /delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/delete.php -------------------------------------------------------------------------------- /edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/edit.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/index.html -------------------------------------------------------------------------------- /inventorymanagement.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/inventorymanagement.sql -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/login.php -------------------------------------------------------------------------------- /table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harsh21Patel/Inventory-Management-System-PHP/HEAD/table.php --------------------------------------------------------------------------------