Abdeldjalil-GRF /
Sportify
🎯 A full-stack web project for booking online sports activities, built with PHP, MySQL, HTML, CSS, Bootstrap, and JavaScript. Developed as part of a university course project.
Loading repository data…
nlavdaki / repository
A full-stack sports shop web application (PHP, MySQL, Docker) by Nikolaos Lavdakis.
A full-stack web application built by Nikolaos Lavdakis
Sportify is a minimalist athletic e-shop web application developed as a case study demonstrating full-stack web development skills using HTML5, CSS3, JavaScript, PHP, and MySQL.
The app showcases user-centric features such as authentication, wishlist management, and a client-side shopping cart.
It was designed with clean UX principles, responsive design, and can run both in Docker containers and local environments (XAMPP / WSL2).
Build a complete, containerized web system simulating a small online sports shop—demonstrating backend logic, frontend responsiveness, and database integration—while keeping the stack simple and transparent for technical recruiters and collaborators.
| Layer | Technology | Purpose |
|---|---|---|
| Frontend | HTML5 / CSS3 / Vanilla JS | Structure, styling, interactivity |
| Backend | PHP 8.2 | User sessions, auth, wishlist CRUD |
| Database | MySQL 8.0 | Persistent data storage |
| Containers | Docker Compose | Reproducible environment (web + db + adminer) |
| Tools | Adminer / XAMPP / WSL2 | Alternative local dev setups |
docker compose up.public/
├── assets/
│ ├── css/style.css
│ └── js/cart.js
├── img/
│ ├── demo_*.jpg
│ ├── logo.png
│ └── screens/
├── php/
│ ├── db.php
│ ├── session.php
│ ├── nav.php
│ ├── wishlist_add.php / wishlist_view.php
│ ├── login.php / register.php / logout.php
│ └── remove_favorite.php
├── index.php
├── products.php
├── cart.php
├── services.php
├── weather.php
├── about.php
├── docker-compose.yml
├── .env.example
└── sql/schema.sql
| Page | Preview |
|---|---|
| Home / Index | |
| Cart | |
| Wishlist | |
| Services / News | |
| Weather | |
| Register | |
| Login |
(All screenshots captured at 1280×720 for portfolio clarity.)
docker compose up -d
Then visit:
Credentials (from .env.example):
MYSQL_DATABASE=sports_shop
MYSQL_USER=sports_user
MYSQL_PASSWORD=changeme_user
public/ folder inside htdocs/sportify/.sports_shop in phpMyAdmin.sql/schema.sql.php/db.php:
$host = 'localhost';
$db = 'sports_shop';
$user = 'root';
$pass = '';
http://localhost/sportify/.Nikolaos Lavdakis
Data Scientist & Software Engineer
Exploring the intersection of AI, digital twins, and interactive web systems.
LinkedIn: linkedin.com/in/nikos-lavdakis-317109164
Email: lavdisn@gmail.com
This project is licensed under the MIT License — see the LICENSE file for details.
MIT License
Copyright (c) 2025 Nikolaos Lavdakis
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Selected from shared topics, language and repository description—not editorial ratings.
Abdeldjalil-GRF /
🎯 A full-stack web project for booking online sports activities, built with PHP, MySQL, HTML, CSS, Bootstrap, and JavaScript. Developed as part of a university course project.
zhuwhr /
A full stack project using PHP, SQL, JS and HTML/CSS
bismuth1102 /
A full-stack web project of showing sports data.
Likithamurthy4 /
Full stack sports shopping website using HTML, CSS, PHP and MySQL
krisnamahardita /
A full-stack facility reservation system built with Laravel and Bootstrap, featuring real-time availability and a centralized admin dashboard.
Full-Stack Player Management System (PHP & MySQL) by Ahmed Maher. Solves manual data entry for sports academies. Features: Responsive registration form (HTML/CSS), secure admin dashboard (PHP Sessions) with full CRUD (Create, Read, Update, Delete), player search (name/ID), and photo uploads. Built using PHP, MySQL (Prepared Statements), HTML, CSS.