https://github.com/fabdoc27/task-manager
A simple PHP-based task management application.
https://github.com/fabdoc27/task-manager
mysql php picocss
Last synced: 3 months ago
JSON representation
A simple PHP-based task management application.
- Host: GitHub
- URL: https://github.com/fabdoc27/task-manager
- Owner: Fabdoc27
- Created: 2024-07-27T23:34:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-05T18:17:31.000Z (almost 2 years ago)
- Last Synced: 2025-05-13T13:03:45.351Z (about 1 year ago)
- Topics: mysql, php, picocss
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Task Management Application
A simple PHP-based task management application.
## Getting Started
1. **Clone the repository:**
```shell
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:
```sql
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:
```shell
php -S localhost:8080
```
Open your browser and navigate to [http://localhost:8080](http://localhost:8080).