01 Source Code Only
One-time Payment
- Complete project source code
- Database / data resources
- Dependencies & configuration
- README / setup guide
- Instant download access
Complete final-year project source code with frontend, backend, database and setup documentation. Instant download after secure payment.
Hover to zoom · Click to expand
Simple pricing. Instant access. Secure checkout.
01 Source Code Only
One-time Payment
02 Code + Setup Support
One-time Payment
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