├── ├── README.md ├── admin.php ├── admin ├── addroom.php ├── css │ ├── login.css │ └── reg.css ├── edit_room_cat.php ├── include │ ├── class.user.php │ └── db_config.php ├── login.php ├── registration.php └── show_room_cat.php ├── booknow.php ├── css ├── bootstrap-theme.css ├── bootstrap-theme.min.css ├── bootstrap.css └── bootstrap.min.css ├── edit_all_room.php ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── hotel.sql ├── images ├── facebook.png ├── home_banner.jpg ├── home_bg.jpg ├── home_gallary │ ├── 1.jpg │ ├── 10.jpeg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ └── 9.jpg ├── reserve.jpg ├── twitter.png └── us │ ├── asif.jpg │ ├── jinat.jpg │ └── mamun.jpg ├── index.php ├── js ├── bootstrap.js ├── bootstrap.min.js ├── jquery.min.js └── npm.js ├── my_js └── slide.js ├── reservation.php ├── review.php ├── room.php ├── show_all_room.php └── show_room_cat.php / : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/README.md -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin.php -------------------------------------------------------------------------------- /admin/addroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/addroom.php -------------------------------------------------------------------------------- /admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/css/login.css -------------------------------------------------------------------------------- /admin/css/reg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/css/reg.css -------------------------------------------------------------------------------- /admin/edit_room_cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/edit_room_cat.php -------------------------------------------------------------------------------- /admin/include/class.user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/include/class.user.php -------------------------------------------------------------------------------- /admin/include/db_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/include/db_config.php -------------------------------------------------------------------------------- /admin/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/login.php -------------------------------------------------------------------------------- /admin/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/admin/registration.php -------------------------------------------------------------------------------- /admin/show_room_cat.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /booknow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/booknow.php -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /edit_all_room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/edit_all_room.php -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /hotel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/hotel.sql -------------------------------------------------------------------------------- /images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/facebook.png -------------------------------------------------------------------------------- /images/home_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_banner.jpg -------------------------------------------------------------------------------- /images/home_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_bg.jpg -------------------------------------------------------------------------------- /images/home_gallary/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/1.jpg -------------------------------------------------------------------------------- /images/home_gallary/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/10.jpeg -------------------------------------------------------------------------------- /images/home_gallary/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/11.jpg -------------------------------------------------------------------------------- /images/home_gallary/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/12.jpg -------------------------------------------------------------------------------- /images/home_gallary/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/13.jpg -------------------------------------------------------------------------------- /images/home_gallary/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/14.jpg -------------------------------------------------------------------------------- /images/home_gallary/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/15.jpg -------------------------------------------------------------------------------- /images/home_gallary/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/16.jpg -------------------------------------------------------------------------------- /images/home_gallary/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/17.jpg -------------------------------------------------------------------------------- /images/home_gallary/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/2.jpg -------------------------------------------------------------------------------- /images/home_gallary/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/3.jpg -------------------------------------------------------------------------------- /images/home_gallary/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/4.jpg -------------------------------------------------------------------------------- /images/home_gallary/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/5.jpg -------------------------------------------------------------------------------- /images/home_gallary/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/6.jpg -------------------------------------------------------------------------------- /images/home_gallary/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/7.jpg -------------------------------------------------------------------------------- /images/home_gallary/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/8.jpg -------------------------------------------------------------------------------- /images/home_gallary/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/home_gallary/9.jpg -------------------------------------------------------------------------------- /images/reserve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/reserve.jpg -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/twitter.png -------------------------------------------------------------------------------- /images/us/asif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/us/asif.jpg -------------------------------------------------------------------------------- /images/us/jinat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/us/jinat.jpg -------------------------------------------------------------------------------- /images/us/mamun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/images/us/mamun.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/js/npm.js -------------------------------------------------------------------------------- /my_js/slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/my_js/slide.js -------------------------------------------------------------------------------- /reservation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/reservation.php -------------------------------------------------------------------------------- /review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/review.php -------------------------------------------------------------------------------- /room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/room.php -------------------------------------------------------------------------------- /show_all_room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/show_all_room.php -------------------------------------------------------------------------------- /show_room_cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Witchbug/hotel-booking/HEAD/show_room_cat.php --------------------------------------------------------------------------------