<div class="dataTable_wrapper">
                                    <table class="table table-striped table-bordered table-hover" id="dataTables-example">
                                        <thead>
                                            <tr>
                                                <th>Matricula </th>
                                                <th>Nombre </th>
                                                <th>Correo</th>
                                                <th>Telefono</th>
                                                <th>VerInstructor</th>
                                                
                                            </tr>
                                        </thead>
                                        
                                        <tbody>
                                        <?php 
$prep_state = $admin->ConsultarInstructores();
while ($row = $prep_state->fetch(PDO::FETCH_ASSOC)) {
    ?>
                                            <tr>                 
                                                <td><?php 
    echo $row['matricula'];
    ?>
</td>                                   
                                                <td><?php 
    echo $row['nombreinstructor'];
    ?>
</td>                                    
                                                <td><?php 
    echo $row['correo'];
    ?>
</td>