My html structure looks like below:
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Category</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>john@live.nl</td>
<td>
<form method="post" action="admin.php>
<input type="text" ........
<input type="text" ........
<button type="submit" name="change_category">Update</button>
</form>
</td>
</tr>
</tbody>
</table>
When i check it in the validator https://validator.w3.org/; it does not give me an error. But i am not sure if this is correct...
Because, according to this topic: Form inside a table ; it is not allowed