How to store a html table data into MySQL database.
Sample Html code is given below. In original, there is about thousand form on the same page.
<thead>
<tr>
<th> Id</th>
<th>From area</th>
<th>To area</th>
<th>Basic price</th>
</tr>
</thead>
<form action="basicprice.php" method="get" name="basicprice">
<tr>
<td>4</td>
<td class="static">Address 1</td>
<td class="static">Airport 1</td>
<td class="center"><input type="text" name="basicprice" value="54"></td>
<td><input name="submit" type="submit" value="Save"></td>
</tr>
</form>
<form action="basicprice.php" method="get" name="basicprice">
<tr>
<td>4</td>
<td class="static">Address 1</td>
<td class="static">Airport 1</td>
<td class="center"><input type="text" name="basicprice" value="54"></td>
<td><input name="" type="submit" value="Save"></td>
</tr>
I want create a database from these details. Need Help.
Thanks in advance
<form>structure in Database? Why?