A system built for hostel room allocation for our College(SKNCOE Pune) as a part of DBMS Course.
-
Install XAMPP: Download XAMPP and install it.
-
Start Services: Open XAMPP Control Panel and start Apache and MySQL.
-
Setup Project:
- Place the project folder in
C:/xampp/htdocs/
. - Create a MySQL database in phpMyAdmin.
- Import the
.sql
file into the newly created database.
- Place the project folder in
-
Configure Database:
- Update the database connection details in your project’s configuration file (
config.php
,db.php
, etc.):$servername = "localhost"; $username = "root"; $password = ""; $dbname = "your_database_name";
- Update the database connection details in your project’s configuration file (
-
Run the Project: Visit
http://localhost/your_project_folder_name/
in your browser.