Contains My College Final Sem Project
- Clone the Repository
- Make a New File inside the includes/ directory with the name database_credentials.php
- Paste the Required Values which will be used by the Web App to Connect to the Database.
<?php
$hostname = "localhost";
$username = ""; //Username Here
$password = ""; //Password Here
$db_name = ""; //Database Name Here
?>
Import the database.sql File into your Database to Create the Database Schema.