Web Programming II Final Project Specifications

Create a PHP/MySQL application that allows for the display, insertion, deletion and editing of database records.
This project is worth 200 points, 50 points for each page.

Your main page should, at the minimum, include the following;


Insert a new record

#
First Name
Last Name
Address
Phone #
   
1 Steve Ralston 123 Blahblah St., Waterloo, IA 50702 (319)610-1018

 

When you choose to insert a record you go to a page with a form that looks similar to this;


Back to main page

First Name:
Last Name:
Address:
Phone:
 

 

When you choose to edit a record, you go to a similar page, populated with the information for the record you are editing.
It should look similar to this;


Back to main page

First Name:
Last Name:
Address:
Phone:
 

 

When you choose to delete a page, you should go to a page that asks if you really want to delete the record.
This page should look similar to this;


Do you really want to delete this record?
No, return to the main page          Yes, delete the record.