Last active
February 11, 2021 13:27
-
-
Save oriadam/15f912d4990f1aff951cea8deca9ab6d to your computer and use it in GitHub Desktop.
simple PHP mission
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. create a mysql db with the following tables: | |
items | |
item_id name category_id | |
categories | |
category_id name | |
and add some initial categories and items | |
2. create an html page that displays the items grouped by category | |
3. at the bottom of the page add a form to add new items. the item should also be added to the page. | |
use ajax | |
you can use jQuery, jQueryUI, React or similar | |
handle errors and xss. | |
write something that you are proud of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment