Como exibir em colunas, dados de uma linha mysql?
Estou tentando fazer uma pesquisa, mysql, que exiba, em colunas, a linha de uma tabela mysql.
ex.
| data :02/11/19 | data :02/12/19 |
|Peso | 60 | 63 |
|Altura| 1,75 | 1,76 |
"Peso" e "Altura" não mudariam, apenas seus valores a frente, acrescentando sempre uma coluna;
Desde já agradeço!!
ex.
| data :02/11/19 | data :02/12/19 |
|Peso | 60 | 63 |
|Altura| 1,75 | 1,76 |
"Peso" e "Altura" não mudariam, apenas seus valores a frente, acrescentando sempre uma coluna;
Desde já agradeço!!
Giovani Carnaval
Curtidas 0
Respostas
Douglas
02/11/2019
vc vai ter que fazer mais ou menos assim :
<table style="width:100%">
<tr>
<th>data</th>
<th>Peso</th>
<th>Altura</th>
</tr>
<?php
$consulta = mysql_query("SELECT * FROM 'tabela'");
while($r = mysql_fetch_assoc($consulta)){
?>
<tr>
<td><?php echo $r['data'] ?></td>
<td><?php echo $r['peso'] ?></td>
<td><?php echo $r['altura'] ?></td>
</tr>
<?php } ?>
</table>
<table style="width:100%">
<tr>
<th>data</th>
<th>Peso</th>
<th>Altura</th>
</tr>
<?php
$consulta = mysql_query("SELECT * FROM 'tabela'");
while($r = mysql_fetch_assoc($consulta)){
?>
<tr>
<td><?php echo $r['data'] ?></td>
<td><?php echo $r['peso'] ?></td>
<td><?php echo $r['altura'] ?></td>
</tr>
<?php } ?>
</table>
GOSTEI 0