https://github.com/efefurkankarakaya/php-todo-app
Todo application with PHP
https://github.com/efefurkankarakaya/php-todo-app
Last synced: about 2 months ago
JSON representation
Todo application with PHP
- Host: GitHub
- URL: https://github.com/efefurkankarakaya/php-todo-app
- Owner: efefurkankarakaya
- Created: 2020-06-14T16:51:53.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-27T17:58:38.000Z (almost 5 years ago)
- Last Synced: 2025-01-18T07:43:59.699Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP To Do App
A web based todo application. You can save, remove and / or edit your todos.
# Technologies
* HTML 5
* CSS 3
* Bootstrap 4
* Font Awesome 3
* JavaScript
* PHP 7.4
* SQLite 3# How To Install
## For Ubuntu 20.04
* Install PHP 7.4: ```sudo apt install php7.4```
* Install SQLite 3 for PHP 7.4: ```sudo apt install php7.4-sqlite3```
* Create a folder that named "www" under "/home"
* Run a terminal and run this code: ```php -S localhost:4000```
* Go to the folder which named as "www"
* Clone this repository there: ```git clone https://github.com/efefurkankarakaya/php-todo-app.git```
* Run a browser and type on URL bar: ```localhost:4000/www/index.php```**NOTE:** "www" folder is not required, you can clone it to anywhere (example: Downloads) and access with ```localhost:4000/Downloads/php-todo-app/index.php```
## For Linux Mint 19.3 Tricia
* Install PHP 7.2: ```sudo apt install php```
* Install SQLite 3 For PHP 7.2: ```sudo apt install php7.2-sqlite3```
* Rest of the instructions are same with installation on Ubuntu.