Nombre
                    </th>
                    <th>
                        Semestre
                    </th>
                    <th>
                        Costo
                    </th>
                    <th colspan="2">
                        Opciones
                    </th>
                </tr>
            </thead>
            <tbody>
                <?php 
$listaMaterias = $materiasBLL->selectAll();
foreach ($listaMaterias as $objMaterias) {
    ?>
                    <tr>
                        <td>
                            <?php 
    echo $objMaterias->getNID_Materia();
    ?>
                        </td>
                        <td>
                            <?php 
    echo $objMaterias->getSCodigo();
    ?>
                        </td>
                        <td>
                            <?php