Previj;1230897 wrote:Hello Friends,
I am new to HTML. I would like to know how to create a table in HTML which dynamically changes its cells value w.r.t the drop down option and click on (submit) option.
Please help me to resolve this...
Thanks in Advance...! 
Perhaps you can use Javascript, but it will be very complex. The ONLY proper way to do it is to use a server-side script and AJAX.
Each time a user enters a field, an HTTPRequest is sent to the server, and the server replies by creating a new field or executing the next stage of the process.
HTML is purely static: it displays what it is told to display. Thats it! Javascript allows you to add a little bit of intereactivity, but I guess it'd be better to use AJAX.