I have a table and I would like to create a conditional formatting for when certain text appears in the table, which are 5 such texts, (Start, half, end, canceled, awaited). change the font color, for each text a different color. Aguem know how to do this? Thanks
<table id="destino" class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Nome</th>
<th>Cliente</th>
<th>Data</th>
<th>Destino</th>
</tr>
</thead>
<tbody>
<?php while($dado = $con->fetch_array()){ ?>
<tr>
<td><?php echo $dado["id"];?></td>
<td><?php echo $dado["nome"];?></td>
<td><?php echo $dado["cliente"];?></td>
<td><?php echo $dado["data"];?></td>
<td><?php echo $dado["destino"];?></td>
</tr>
<?php } ?>
</tbody>
</tfoot>
</table>
In the Destination column where these specific text will appear.