Student and computer are from another table
public function buscaTodos() {
$sql = "SELECT * FROM " . $this->tabela;
$sqle = $this->con->query($sql);
$dados = $sqle->fetchAll(PDO::FETCH_ASSOC);
return $dados;
}
$registro = new Registro();
$dados = $registro->buscaTodos();
<table class='table][1]][1] table-bordered table-striped'>
<tr>
<th>ID</th>
<th>Aluno</th>
<th>Computador</th>
<th>Data</th>
<th>Hora de Entrada</th>
<th>Hora de Saída</th>
<th>Motivo</th>
<th>Opções</th>
</tr>
<?php
foreach($dados as $r){
$id=$r['id'];
$aluno=$r['id_aluno'];
$computador=$r['id_computador'];
$dt_registro = $r['dt_registro'];
$hr_entrada = $r['hr_entrada'];
$hr_saida = $r['hr_saida'];
$motivo = $r['motivo'];
?>
<tr>
<td><?=$id?></td>
<td><?=$aluno?></td>
<td><?=$computador?></td>
<td><?=$dt_registro?></td>
<td><?=$hr_entrada?></td>
<td><?=$hr_saida?></td>
<td><?=$motivo?></td>
</tr>
<?php } ?>
</table>