I would like to create a form that can insert multiple records in one table.
Here's my example:
<form>
<table>
<tr>
<th>Subject</th>
<th>Description</th>
<th>Final Grade</th>
</tr>
<tr>
<td><input type="text" ></td>
<td><input type="text" ></td>
<td><input type="text" ></td>
</tr>
<tr>
<td><input type="text" ></td>
<td><input type="text" ></td>
<td><input type="text" ></td>
</tr>
<tr>
<td><input type="text" ></td>
<td><input type="text" ></td>
<td><input type="text" ></td>
</tr>
<tr>
<td><input type="text" ></td>
<td><input type="text" ></td>
<td><input type="text" ></td>
</tr>
</table>
</form>
is there any way that I can create this kind of form or relevant to it?
Thank you for your help 🙂
im using the latest version of OS Ticket btw