A simple PHP-based task management application.
-
Clone the repository:
git clone git@github.com:Fabdoc27/Task-Manager.git cd Task-Manager -
Configure the database:
Update
config.phpwith your database credentials if necessary. -
Import the database:
Create a
tododatabase and ataskstable:CREATE DATABASE todo; USE todo; CREATE TABLE tasks ( id INT AUTO_INCREMENT PRIMARY KEY, task VARCHAR(255) NOT NULL, date DATE NOT NULL, complete TINYINT(1) DEFAULT 0 );
-
Run the project:
Start the PHP development server:
php -S localhost:8080
Open your browser and navigate to http://localhost:8080.