Skip to content

Latest commit

 

History

History
80 lines (59 loc) · 1.97 KB

README.md

File metadata and controls

80 lines (59 loc) · 1.97 KB

My Hotel

Hotel Website and Booking Management System.

Multi-themes and Language, currently English and Portuguese. Written in PHP and using SQLite database, it is best suited to small and medium-sized hotels or hostels.

Requirements

  • PHP 7.2+
  • php-sqlite3

Demo:

https://myhotel.nunofcguerreiro.com

Installation:

Clone or Download the Repository

Configuration

Settings in include/conf.php file.

Default User and Passowrd is "admin". Make sure to change this.

server {
...

try_files $uri $uri/ @rewrite;

 location @rewrite {
    rewrite ^/(.*)$ /index.php?page=$1;
 }

 location ~ /\.sqlite {
    deny all;
 }
}

ScreenShots

- Home

Screenshot

- Rooms

Screenshot

- Services

Screenshot

- Gallery

Screenshot

- BookNow

Screenshot

- Contact Us

Screenshot

- Admin Home

Screenshot

- Admin Bookings

Screenshot

- Admin Calendar

Screenshot

- Admin Language

Screenshot

- Admin Gallery

Screenshot

- Admin Rooms

Screenshot

- Admin Services

Screenshot