A little background info: I am using Netbeans IDE 7.3, I have an SQL server running and I am trying to create a html application to insert data into the connected sql server/database structure.
I hope that made enough sense to see what I'm asking.
My question: I simply want to create a page on the HTML application which asks a user to enter information about a person such as their first name, last name, address, phone number, etc.
I want it to appear in this manner to the user:
First Name: [text area]
Last Name: [text area]
etc....
Then at bottom I want a submit button. At this point the information in the fields above would be sent to the "person" table in the database with each column/attribute filled with the appropriate information above.
A new row is created in the table at this point.
How can this be done? Examples of code would be great if you know of any.
Thanks in advance.