What are the potential drawbacks of using table elements for form submission actions in PHP?

Using table elements for form submission actions in PHP can lead to accessibility issues for users who rely on screen readers or keyboard navigation. It is recommended to use semantic HTML elements like buttons or input elements with type="submit" for form submission actions to ensure better accessibility and compatibility with different devices and browsers.

<form action="submit.php" method="post">
  <!-- Form fields here -->
  <button type="submit">Submit</button>
</form>