need completion of mysql database php assignment

profilenightmare
project2.zip

project2.docx

Create a separate  project directory on the server and place all pages and include files in it to create the following web site.

· register.php allows the user to fill in all fields except the id of the user table, confirms it and saves it to the user table, then opens  login.php

· login.php allows the user to log in and opens  list.php

· list.php displays a list of all of the items with the logged in user's id, in order by the item number.  It also contains a logout link and a link to add an item to the list.  The user must be logged in to see it.

· add.php displays a form with a textfield for an item number and a textfield for the list item.  When the user clicks a "save" button, the user's id, the item number and the list item should be saved in a table with fields for "itemID", the primary key, "userid", the user's id, "itemNumber", the filled in item number, and "listItem", the content for that list item, and the user should be sent to list.php.  A cancel link or button should cancel, and it should contain a logout link.   The user must be logged in to see it.