Skip to content

amitpaul2004/Event_HUB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 

Repository files navigation

📘 Event HUB – Event Management System

Event HUB is a complete event management platform built using PHP and MySQL.
It allows admins to create and manage events, while users can register, view details, and track participation.
This project is ideal for event organizations, clubs, colleges, seminars, and workshops.


🚀 Project Overview

Event HUB provides an easy-to-use system to organize events efficiently.
It includes complete event listings, attendee registrations, admin dashboard, and a responsive frontend UI.


Overview:

image

Demo Vedio :

https://screenapp.io/app/v/cs2qhILKs8


⭐ Key Features

  • ✔ Add, edit, update, and delete events
  • ✔ User event registration
  • ✔ Event categories & details
  • ✔ Admin dashboard
  • ✔ Responsive Bootstrap UI
  • ✔ Secure PHP & MySQL backend
  • ✔ Clean folder structure

🛠 Technologies Used

Part Technology
Frontend HTML, CSS, JavaScript, Bootstrap
Backend PHP (Core PHP)
Database MySQL
Server Apache (XAMPP/APACHE)

⚙️ Installation & Setup

Follow these steps carefully to run the project.


1️⃣ Install Required Software

Install XAMPP (Recommended):
https://www.apachefriends.org/

It includes:

  • Apache Server
  • PHP
  • MySQL

2️⃣ Move Project to Server Directory

  1. Extract Event_HUB.zip
  2. Rename folder to: Event_HUB
  3. Move it to: C:\xampp\htdocs\

3️⃣ Import the Database

  1. Open XAMPP → Start Apache and MySQL
  2. Visit:http://localhost/phpmyadmin
  3. Create a database: event_hub
  4. Go to Import
  5. Choose: Event_HUB/database/event_hub.sql

Done! Database is ready.


4️⃣ Configure Database (Important)

Open:

config.php

Put this code:

<?php
$host = "localhost";
$user = "root";
$pass = "";
$db   = "event_hub";

$conn = mysqli_connect($host, $user, $pass, $db);

if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}
?>

Run the Project

http://localhost/Event_HUB/

About

A complete web platform for professional event registration. Users can browse upcoming seminars, view detailed information, and sign up through a simple form. The system validates entries, provides immediate on-screen confirmation, and securely stores all registration data in a relational database.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors