01 Synopsis
One-time Payment
- PDF & Word both included
- Up to 30 pages
- Only 1 diagram included
- Problem statement & objectives
- Ready for college submission
Complete B.Tech final-year project report with documentation, diagrams and viva-ready structure. Instant PDF & Word download — plagiarism-free and faculty-aligned.
Need a customized report? Chat on WhatsAppSimple pricing. Instant access. Every package includes PDF & Word format.
01 Synopsis
One-time Payment
02 Pre Defined Project Report
One-time Payment
03 Customized Report
One-time Payment
04 Originality Reviewed
One-time Payment
Abstract
Table of Content
Introduction
Problem Statement
Existing System
Proposed System
Objectives
System Architecture
Major Functional Modules
Hardware Requirements
Software Requirements
Future Enhancement
Conclusion
References
Abstract
Table of Content
Chapter 1 — Introduction
Chapter 2 — Literature Review / System Study
Chapter 3 — System Analysis
Chapter 4 — System Design
Chapter 5 — System Implementation
Chapter 6 — Testing
Chapter 7 — Results and Discussion
Chapter 8 — Conclusion and Future Enhancements
Chapter 9 — References
PG / Hostel Finder is a final year project developed using PHP and MySQL for students who want a practical accommodation search and booking marketplace. This final year project includes separate panels for Students, Owners, and Admins. Students can search PG and hostel listings using filters such as city, area, rent, PG type, room type, and availability, save favorites, send enquiries, request bookings, submit reviews, and raise complaints. Owners can register, upload verification documents, add PG listings, manage rooms, facilities, photos, enquiries, bookings, and owner-side complaint responses. Admins can verify owners, approve or reject listings, manage users, block/unblock accounts, approve reviews, resolve complaints, and view platform data. With listing approval, owner verification, booking confirmation, OTP password reset, uploads, and notifications, this project is suitable as a final year major project in PHP, MySQL, and accommodation marketplace systems.
Admin
adminpasswordseed.sqlAll seeded users and owners use password: password.
Students
Owners
[email protected] — verified owner with listings[email protected][email protected][email protected] — unverified examplepassword_hash() and password_verify()SITE_URL configuration for subfolder deploymentspdo_mysql; mbstring and openssl are recommended.Create a MySQL database for this final year project:
mysql -u root -p -e "CREATE DATABASE pg_finder CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;"
Import schema:
mysql -u root -p pg_finder < database/schema.sql
Optional: import demo data:
mysql -u root -p pg_finder < database/seed.sql
config/config.php:
DB_HOSTDB_NAMEDB_USERDB_PASSSITE_URLCreate upload folders:
mkdir -p uploads/profiles uploads/listings uploads/id_proofs uploads/owner_docs uploads/complaints
Run locally:
cd "PG Finder"
php -S localhost:8000
http://localhost:8000SITE_URL to match the exact URL, such as http://localhost:8000.Admin
adminpasswordseed.sqlAll seeded users and owners use password: password.
Students
Owners
[email protected] — verified owner with listings[email protected][email protected][email protected] — unverified example