Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Management Application

A simple PHP-based task management application.

Getting Started

  1. Clone the repository:

    git clone git@github.com:Fabdoc27/Task-Manager.git
    cd Task-Manager
  2. Configure the database:

    Update config.php with your database credentials if necessary.

  3. Import the database:

    Create a todo database and a tasks table:

    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
    );
  4. Run the project:

    Start the PHP development server:

    php -S localhost:8080

Open your browser and navigate to http://localhost:8080.

About

A simple PHP-based task management application.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages