This repository contains various web development projects created using a mix of front-end and back-end technologies including HTML5, CSS3/CSS5, JavaScript, Bootstrap, and PHP. It also integrates with MySQL databases via phpMyAdmin and runs on local environments like XAMPP and WAMP Server.
Category | Stack/Tool |
---|---|
Front-End | HTML5, CSS3/CSS5, JavaScript |
Styling & Layout | Bootstrap 4/5 |
Back-End | PHP 7.x / 8.x |
Database | MySQL via phpMyAdmin |
Local Servers | XAMPP / WAMP Server |
- A modern browser (Chrome, Firefox, Edge)
- XAMPP or WAMP Server
- phpMyAdmin (comes with XAMPP/WAMP)
- PHP 7.4+ or 8.0+
- MySQL Server
- Install and open XAMPP.
- Start Apache and MySQL modules.
- Place your project folder inside:
C:\xampp\htdocs\your-project-folder
- Open your browser and go to:
http://localhost/your-project-folder
- Install and launch WAMP.
- Ensure the server icon is green (running).
- Place your project in:
C:\wamp64\www\your-project-folder
- Navigate to:
http://localhost/your-project-folder
- Open phpMyAdmin:
http://localhost/phpmyadmin
- Create a new database (e.g.,
project_db
) - Import your
.sql
file if provided (found under/db/
) - Update your
config.php
or connection file with:
$host = "localhost";
$user = "root";
$password = "";
$db = "project_db";
$conn = mysqli_connect($host, $user, $password, $db);