What is MySQL?
MySQL is a relational database that uses SQL
Database vs Table
A database is a collection of tables. Tables are groups of data within the database.
What are foreign keys in MySQL?
Foreign keys are columns in a table that connect the table with other tables by linking the foreign keys with another table’s primary keys.
What is MySQL workbench?
MySQL Workbench is a GUI web interface for interacting with MySQL databases
PHP+MySQL: WHen should you use post vs get?
Use get when there are no side effects from querying a db. Use post when the form submission has side effects such as modification of a database or subscription to a service,