├── README.md
├── add-list.php
├── add-task.php
├── config
└── constants.php
├── css
└── style.css
├── delete-list.php
├── delete-task.php
├── index.php
├── list-task.php
├── manage-list.php
├── references.txt
├── task_manager_db.zip
├── update-list.php
└── update-task.php
/README.md:
--------------------------------------------------------------------------------
1 | # Task Manager with PHP and MySQL
2 | Simple Task Manager web app with PHP and MySQL.
3 |
4 | [Complete TASK MANAGER Tutorial Playlist](https://www.youtube.com/watch?v=1rl36zxqZZw&list=PLBLPjjQlnVXXygeLVmd9mGNtgrHaBOFos)
5 |
6 |
7 |
8 | ## Support Developer
9 | 1. Subscribe & Share my YouTube Channel - https://bit.ly/vijay-thapa-online-courses
10 | 2. Add a Star 🌟 to this 👆 Repository
11 |
12 | ## Donate
13 |
14 | **[PayPal](https://bit.ly/support-vijay-thapa)**
15 |
16 | **[Buy me a Coffee ☕️](https://www.buymeacoffee.com/vijaythapa)**
17 |
18 | **Donate by wire transfer:** E-Mail at *donate@vijaythapa.com* for wire transfer details.
19 |
20 |
21 | ## Technologies Used
22 | 1. Core PHP Programming Language (Procedural Programming)
23 | 2. MySQL Database
24 | 3. HTML
25 | 4. CSS
26 |
27 | ## How to Download and Run on your PC?
28 |
29 | ### Pre-Requisites:
30 |
31 | 1. Download and Install XAMPP
32 |
33 | [Click Here to Download](https://www.apachefriends.org/index.html)
34 |
35 | 2. Install any Text Editor (Sublime Text or Visual Studio Code or Atom or Brackets)
36 |
37 | ### Installation
38 |
39 | 1. Download as as Zip or Clone this project
40 | 2. Move this project to Root Directory
41 | ```
42 | Local Disc C: -> xampp -> htdocs -> 'this project'
43 | ```
44 | *Local Disk C is the location where xampp was installed*
45 |
46 | 3. Open XAMPP Control Panel and Start 'Apache' and 'MySQL'
47 |
48 | 4. Import Database
49 |
50 | a. Open 'phpmyadmin' in your browser
51 | b. Create a Database
52 | c. Import the SQL file provided with this project
53 |
54 | 5. Make Changes to settings
55 |
56 | Go to 'config' folder and Open 'constants.php' file. Then make changes on following constants
57 | ```php
58 |
71 | ```
72 |
73 | 6. Now, Open the project in your browser. It should run perfectly.
74 |
75 | ## For Sponsor or Projects Enquiry
76 | 1. Email - hi@vijaythapa.com
77 |
78 | ## Follow Me on
79 | 1. LinkedIn - [vijaythapa](https://www.linkedin.com/in/vijaythapa/ "Vijay Thapa on LinkedIn")
80 | 2. Instagram - [@vijaythapa.code](https://www.instagram/vijaythapa.code/ "Vijay Thapa on Instagram")
81 | 3. Facebook - [@thevijaythapa](https://www.facebook.com/thevijaythapa/ "Vijay Thapa on Facebook")
82 | 5. Twitter - [@thevijaythapa](https://www.twitter.com/thevijaythapa "Vijay Thapa on Twitter")
83 |
--------------------------------------------------------------------------------
/add-list.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 | Task Manager with PHP and MySQL
8 |
9 |
10 |
11 |
12 |
13 |