h1

Similar Case Section 1

You have been asked to create a program that will store users favorite foods. You will need to store the user’s name and zero or more favorite foods for each user. You will also need to be able to query users and their favorite foods as well as update them.

Deliverable:
A database with a users table and a favorite_foods table.
Prepared Statement(s) that add users and their favorite foods to the database.
Prepared Statement(s) that updates user info and/or their favorite foods.
Prepared Statement(s) that query the information stored in the database.
A working application

Hint: Using JOIN statements will make your life easier.