This project is a simple client-server application that allows users to register and login. The project is built using HTML, CSS, MySQL, and PHP. The primary functionalities include user registration with data storage in a MySQL database and email verification during registration.
- HTML
- CSS
- MySQL
- PHP
To use this project, follow these steps:
- XAMPP: Download and install XAMPP, a free and open-source cross-platform web server solution stack package developed by Apache Friends. You can download it from here.
Clone this repository into the htdocs folder of your XAMPP installation.
Start the Apache server and MySQL from the XAMPP control panel.
Open 'phpmyadmin' in your browser('https://localhost/phpmyadmin') Create a new database called 'demo' Inside the 'demo' database, create a table named 'users' with the following structure:
CREATE TABLE users ( user_id INT PRIMARY KEY AUTO_INCREMENT, email VARCHAR(255) NOT NULL, username VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL, verify_status TINYINT DEFAULT 0, verify_token VARCHAR(255) );
Open your web browser and navigate to 'http://localhost/Client-Server'.