Skip to content

This project is a simple to-do list application developed using PHP.

Notifications You must be signed in to change notification settings

saddamhmalik/todo_php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CleanShot.2024-05-17.at.13.45.19.mp4

PHP To-Do List Project

This project is a simple to-do list application developed using PHP.

Setup Instructions

1. Create Table SQL

Run the following SQL command to create the necessary table for tasks:

CREATE TABLE tasks (
    id INT AUTO_INCREMENT PRIMARY KEY,
    description VARCHAR(255) NOT NULL,
    completed BOOLEAN DEFAULT 0
);

2. Start the PHP Development Server

To run the PHP development server, navigate to the todo directory in your terminal and execute the following command:

php -S localhost:8000

About

This project is a simple to-do list application developed using PHP.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages