Demonstrates application of many of the PHP concepts Web Application and Server Management
- Subject Code :
NIT1204
- Country :
Australia
Description of task:
This project will be a comprehensive Web site that demonstrates application of many of the PHP concepts covered in thisunit.
You are required to develop a PHP web application to manage a shopping list i.e. Shopping List Manager application. Thisapplication does not require items to be stored in a database, the items are lost when the user closes the application.
Create a user interfaceThe user interface for the Shopping List Manager shows the items at the top of the web page in a numbered list. The userinterface also includes an add form that lets the user add a new item to the list, and it includes a delete form that lets the userdelete an item from the list.
Implement Add, Delete and Modify Buttons
Implement Add Item button which is used to add shopping items in the list. Delete button is to delete the selected shoppingitem. Use the array_push() function to add a new item to the list. Modify Item button lets the user modify an existingitem. If the user clicks on the Modify Item button, this code should hide the form that contains the Modify Item button, andit should display the form that displays the current item in a text box and includes buttons that lets users save or cancel theirchanges.
Implement the Sort Item button
Implement that code that allows a user to sort all items alphabetically. The Sort button should be displayed only if the itemlist contains two or more items.
Test the application
Test your application to make sure that everything works correctly.