What are the advantages and disadvantages of using HTML tables to display selected languages in a PHP application?

When displaying selected languages in a PHP application using HTML tables, the advantages include easy organization of data and the ability to style the table using CSS. However, the disadvantages include potential accessibility issues for users with screen readers and the possibility of slower page loading times due to the use of tables for layout.

<table>
    <tr>
        <th>Language</th>
        <th>Code</th>
    </tr>
    <tr>
        <td>English</td>
        <td>en</td>
    </tr>
    <tr>
        <td>Spanish</td>
        <td>es</td>
    </tr>
    <tr>
        <td>French</td>
        <td>fr</td>
    </tr>
</table>