I'm doing a Crud here for my system, I created a function for it to query the database giving a SELECT and returning the records
The strange thing is that some columns are already displayed, others are not
If anyone has any idea of what can be, it gives a touch FROM THANKS AGAIN
OSS
<?phpforeach($condutor->findById($id)as$key=>$value):?><trclass="even pointer">
<td class=" "><?php echo $value->id; ?></td>
<td class=" "><?php echo $value->nome; ?></td>
<td class=" "><?php echo $value->rg; ?></td>
<td class="celula"><?php echo $value->hab; ?></td>
<td class=" "><?php echo $value->reg; ?></td>
<td class=" "><?php echo $value->val; ?></td>
<td class=" "><?php echo $value->cpf; ?></td>
<td class=" "><?php echo $value->cliente; ?></td>
<td class=" "><?php echo $value->user; ?></td>
<td class=" last"><a href="#">Editar <span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></a></td>
<td class=" last"><a class="delete" href="#">Excluir <span class="glyphicon glyphicon-remove" aria-hidden="true"></span></a></td>
</tr>
<?php endforeach; ?>