I have the following code.
<table style="width:100%;">
<thead>
<tr>
<th scope='col'> Nº Comanda </th>
<th scope='col'> Produto </th>
<th scope='col'> Quantidade </th>
<th scope='col'> V. Unitário </th>
<th scope='col'> V. Total </th>
<th scope='col'> Registrado Por: </th>
<th scope='col'> Data & Hora: </th>
</tr>
</thead>
<tfoot>
<?php
$buscarucomanda=mysql_query("SELECT cont_estoques_cadp.descricao,
cadastro_geral.nome_com,
cadastro_geral.id,
comanda.status,
comanda.quantidade,
comanda.valorUnit,
comanda.valortt,
comanda.data_op,
comanda.id_user,
comanda.num_comanda
FROM
cadastro_geral
JOIN
comanda
JOIN
cont_estoques_cadp
ON
comanda.id_user = cadastro_geral.id
and
cont_estoques_cadp.id=comanda.id_produto
WHERE comanda.status='0'
order by comanda.num_comanda ASC");
if(mysql_num_rows($buscarucomanda) == 0){
echo "<tr>
<td colspan='6'>
<center>
Não foi possível localizar os produtos registrados. <br>
Consulte seu supervisor para mais informações!
</center>
</td>
</tr>";
}else{
while($linha=mysql_fetch_array($buscarucomanda)){
?>
<tr>
<td><?php echo $linha['num_comanda'];?></td>
<td><?php echo utf8_encode($linha['descricao']);?></td>
<td><?php echo $linha['quantidade'];?></td>
<td><?php echo $linha['valorUnit'];?></td>
<td><?php echo $linha['valortt'];?></td>
<td><?php echo utf8_encode($linha['nome_com']);?></td>
<td><?php echo date('d/m/Y',strtotime($linha['data_op']));?> às <?php echo date('H:i',strtotime($linha['data_op']));?></td>
</tr>
<?php
}
}
?>
</tfoot>
</table>
which returns the following result:
However,Iamabouttocustomizemytable,givingalternatingcolorstotr
.ButIwantedtodoitdifferently:IwantedtogivedifferentcolorsofacorNºComanda
,andtheendresultwouldlooksomethinglikethis:
How to proceed in this case?