Stack Overflow em Português Asked by Marco Lustosa on December 11, 2021
Caros, estou puxando dados de um banco SQLSERVER
com PDO para uma pagina HTML/PHP, utilizei o seguinte código:
$query = "SELECT * FROM [BD].[Feriados]";
$stmt = $conn->query( $query );
while ( $row = $stmt->fetch( PDO::FETCH_ASSOC ) ){
print_r( $row );
}
?>
Ele me retorna os valores da seguinte maneira:
> Array ( [Codigo] => 1 [Data] => 2000-01-01 00:00:00.000 [Descricao] =>
> ano novo [Fixo] => 2 ) Array ( [Codigo] => 2 [Data] => 2000-01-02
> 00:00:00.000 [Descricao] => 2 [Fixo] => 2 ) Array ( [Codigo] => 4
> [Data] => 2018-09-07 00:00:00.000 [Descricao] => INDEPENDENCIA [Fixo]
> => 1 ) Array ( [Codigo] => 11 [Data] => 2018-10-12 00:00:00.000 [Descricao] => DIA N. SRA. APARECIDA [Fixo] => 1 )
Eu gostaria de organizar estes dados em uma tabela no HTML, mas ainda sou iniciante em PHP e gostaria de uma ajuda se alguém puder me dar uma luz para tratar estes dados.
Obrigado!
$dados = '<table .....>
<thead>
<tr><th class="">Código</th><th class="">Data</th>
<th>Descrição</th><th>Fixo</th>
</tr>';
while ( $row = $stmt->fetch( PDO::FETCH_ASSOC ) ){
$dados .= '<tr><td>'.$row['Codigo'].'</td><td>'.$row['Data'].'</td>
<td>'.$row['Descricao'].'</td><td>'.$row['Fixo'].'</td>
</tr>';
}
echo '</thead><tbody>'.$dados.'</tbody></table>';
Answered by user60252 on December 11, 2021
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP