Todo list web application is easy to use, help you manage tasks effectively, and work smoothly.
- html / css
- php
- mySQL
-
`users` :
- Create new user "login"
- Check user exist "register"
-
`tasks` :
- Create new task "INSERT"
- Delete exist task "DELETE"
- Update exist task "Update"
- Insert tasks in page UI "SELECT"
- Set task to a specific user
-
Lance server
XAMPP
WAMP
MAMP
... -
Create Database "todo_app"
CREATE DATABASE todo_app; use todo_app;
-
Create mySQL Tables
users
&&tasks
CREATE TABLE users( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, username VARCHAR(255) NOT NULL, pass VARCHAR(255) NOT NULL ); CREATE TABLE tasks( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, user VARCHAR(255) NOT NULL, task VARCHAR(255) NOT NULL, finish BOOLEAN NOT NULL );
-
Config youn db connection
./db/connect.php
$USERNAME = "YOUR_USERNAME"; // "root" $PASSWORD = "YOUR_PASSWORD"; // ""
-
Lance the app in
localhost/index.php