Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
==================================================
CITYCARE HOSPITAL - PROJECT SETUP
==================================================
1. PROJECT OVERVIEW
-------------------
System Name : CityCare Hospital Management System
Environment : Apache (XAMPP / Localhost)
Languages : PHP, MySQL, HTML5, CSS3, JavaScript
2. DATABASE CONFIGURATION
-------------------------
Database Name : citycare
Database File : /database/citycare.sql
Host : localhost
Username : root
Password : (none)
Database Connection File: /components/connect.php
3. LOGIN CREDENTIALS (DEMO ACCOUNTS - LOCAL TESTING ONLY)
----------------------------------------------------------
[ADMIN PANEL]
URL : http://localhost/CityCare_Hospital/admin/login.php
Email : admin@citycare.com
Password : fathima12
[DOCTOR PANEL]
URL : http://localhost/CityCare_Hospital/doctors/login.php
Email : sarah.fernando@citycare.com
Password : 123456
[PATIENT PANEL]
URL : http://localhost/CityCare_Hospital/patient/login.php
Email : issath@gmail.com
Password : 12345
Alternative Patient Email: sara@gmail.com
Password : 12345
Note: These are seeded demo credentials for local development only.
Do not reuse this pattern in a production environment.
4. HOW TO IMPORT DATABASE IN PHPMYADMIN
---------------------------------------
1. Start Apache and MySQL in XAMPP Control Panel.
2. Open http://localhost/phpmyadmin/ in your web browser.
3. Click "New" on the left menu and create a database named `citycare`.
4. Select `citycare` from the left menu.
5. Click the "Import" tab at the top bar.
6. Click "Choose File" and select the `citycare.sql` file inside the `/database/` folder.
7. Scroll down and click "Import".
==================================================