Avatar of Andrea Pavone
Andrea Pavone

Basic TO-DO PHP App!

Today, in order to teach boys the basics of PHP, I developed this bascally To-Do List App:

DEMO: https://dev.andreapavone.com/to-do-app/

This App can do 4 Basic Functions:

  1. Add Element to a List

  2. Read Element entered on a list

  3. Check as "Done" this elements

  4. Show Done elements

  5. Reset All List

Fron-End

For the front-end interface i've used a CSS/Js library called Foundation i chose the "Essential" version of this library.

You can dowload this library here: https://foundation.zurb.com/sites/download.html/

Back-End

As anticipated the back-end of this simple app are developed in PHP (sorry no MVC or Framework are userd) and all data are stored on a Session variable called:

$_SESSION['todo'];

and session will be started when you open the site.

Source Code:

You can find the source code of this App on my GitHub account github.com/andp97/to-do-app