Don’t put a form inside a table


Don't put a form inside a table, instead put table inside form Wrong approach: <table> <form id="form-id" method="POST" action"action.php"> <tr><td><!--  form inputs --> </td></tr> </form> </table>   Correct approach:         <form id="form-id" method="POST" action"action.php"> <table> <tr><td><!--  form inputs --> </td></tr> </table> </form>   If you put the form inside the table, the … Continue reading Don’t put a form inside a table