You're on assignment part 2/2 for this lesson.
HTTP CRUD Database Lifecycle
It's important to understand how data flows through a typical web application.

- The frontend processes some data from user input – maybe a form is submitted.
- The frontend sends that data to the server through an HTTP request – maybe a
POST.
- The server makes a SQL query to its database to create an associated record – probably using an
INSERT statement.
- Once the server has determined that the DB query was successful, it responds to the frontend with a status code. Hopefully a
200-level code (success)!