Planning Process

Part B
Wrote the Pseudo code for inserting and deleting a record in the simplest form
I built the database that would be required
I aslo built the PHP and demonstrated the code.

Part C
Feedback mechanism (Pseudo Code)
1. If logged in they will see feedback mechanism if not logged in they will only see a sign in to login to leave feedback.
2. When they do login a session will be created with the users_id contained in the variable
3. feedback mechanism will hold input of title and comment
4. when they push the button to push comment the control listens to for it it then triggers taking the variables.
5. control then validates information if no errors a prepared statement will run the SQL statement to insert to the database shown below.
Feedback table
6. Then within the same statement I run a select statement to pull all information from the table and put it into an array.
7. Then the PHP page calls the array and displays it wthin the a table running a loop.
8. The user is able any moment to log out from the same page using a SESSION DESTROY.

See the Demo of the above code and post feedback.