Problem with innerHTML in Web

Hello Everybody,

I have table that would display data related to users (say First Name, Last Name, Address, Contact No. etc.) and these data would be inserted to this table using a dialog box. So, as and when a user add his / her information through this dialog box a new row would be added to that table. So the idea is to add rows dynamically to that table.

Currently I am inserting the data to that table using innerHTML. But these data are not getting stored in the database. So what should I do to store these data in the database?

Please advice…

Thanks

Asish

Subject: Problem with innerHTML in Web

Dynamically changing the HTML on a web page can never update a back-end document. You will need to set actual fields to the values the user adds. and then the fields need to be submitted to the server to update the document(s). The submit can be done by submitting the web page with fields, or it can be done with AJAX while the user adds names to the list.

/Peter