Quote:
|
Question 1: Are these the only fields in your database table?
|
The fields are the following
personID (auto increments)
First Name
Last Name
Company
Date
Quote
Quote:
|
Question 2: How are you planning to enable each entry?
|
I have a form that lets the user enter the information mentioned above, except the personID which is something MySql is using internally.
In that form there will be 2 radio buttons included, one named enable and the other named disable.
Most users will select enable since its a new entry. I also want the disable button in the form just in case they want to add an the information to the database but with the status disabled.
Quote:
|
The second form has nine fields. Two of which can be combined (Enable/Disable). Does your database table also have eight fields?
|
My database does not have 8 fields. I need to add the rest. Should I have just one column for the Enable/Disable radio buttons?
Quote:
|
Question 4: I am assuming here that this form (table) will contain these fields?
|
The thing is I have two different pages displaying the information. One page will be the admin panel that will give you access to all the information - FirstName, LastName, personID and the enable,diable and delete functionality etc, etc.. The other page will only be used to display information that is enabled from the admin panel.
I will follow your inputs and if you have anything else to add I will really appreciated.
Thanks.