my form as the following table (of textfeild). I am feeding the values into these textfeild. How can i enter these values into my database? plz help.
The simplest way is probably to make the $_POST values for roll etc. an array (so $_POST becomes a multidimensional array).
See this previous question for an example of how it can be done:
Submitting a multidimensional array via POST with php
You can then loop through the array values in your database insert code.