Perfumis is an elegant online store for browsing, reviewing, and purchasing premium fragrances. It includes a customer-facing storefront and an admin panel for managing products, orders, and reports.
- Backend: PHP
- Database: MySQL
- Frontend: HTML, CSS, JavaScript
- Tools: MySQL Workbench, VS Code, GitHub
To set up the database locally:
- Open MySQL Workbench
- Go to Server > Data Import
- Choose Import from Self-Contained File
- File path:
database/perfumis_db.sql
- File path:
- Under Default Target Schema, type
perfumis_db - Click Start Import
Make sure includes/db.php uses the correct credentials:
$host = 'localhost';
$user = 'root';
$pass = ''; // Replace with your local MySQL password
$db = 'perfumis_db';