Implement Item Insertion
Implement a web interface so that a user can insert an item such as:
- Title: Smart phone
- Description: This is the new iPhone X
- Category: electronic, cellphone, apple
- Price: 1000
The IDs of items should be generated automatically using autoincrement feature of MySQL.
Make sure that a user can only post 5 items a day.
Checklist:
- Item Insertion Implemented
- IDs of Items are automatically generated
- User can only post 5 items per day