Skip to content

Hotel booking system for customers added with an admin feature to manage reservations.

License

Notifications You must be signed in to change notification settings

shrifhhn1/HotelSystem

 
 

Repository files navigation

Hotel Management System

Table of Contents

Setup

  1. Make sure you have MySQL and a web server to run/interpret PHP in your system.
  2. Clone or download the repo and put it to xampp/htdocs/ if you're using windows, otherwise check tutorial(s) for your corresponding web server and OS.
  3. Install dependencies for JavaScript, npm install and PHP, composer install.
  4. Create a database named hotel and run the script hotel.sql to create tables and populate data. Make sure your configuration matches with app/DB.php, otherwise make the desired changes.
  5. Run the app.

Create an account

  1. Go to the registration page (register.php) i.e. https://hotel.local/register.php
  2. Enter your info.
  3. To make an admin account
    • 3.1 go to your hotel database
    • 3.2 select table customer
    • 3.3 select an account
    • 3.4 change the value of isadmin to 1

Screenshots

Customer

  • Room pricing room_pricing
  • Reservation form reservation_form
  • View reservation(s) view_booking
  • About user about_user

Admin

  • Manage reservations manage_booking

For developer

Run PHP unit tests

$ ./vendor/bin/phpunit tests
$ ./vendor/bin/phpunit tests/CustomerHandlerTest.php
$ ./vendor/bin/phpunit --filter testUpdateCustomer tests

Run PHP code beautifier and fixer

$ ./vendor/bin/phpcbf app/process_login.php --standard=ruleset.xml
$ ./vendor/bin/phpcbf app/*/*.php --standard=ruleset.xml

Run ESLint to format/fix JavaScript code

npm run eslint
npm run eslint -- --fix

About

Hotel booking system for customers added with an admin feature to manage reservations.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 84.2%
  • JavaScript 12.6%
  • Hack 2.5%
  • CSS 0.7%