-1
I have a table and would like to create a conditional formatting for when it appears certain text in the table, which are 5 these texts, (Beginning, half, end, canceled, awaited). change the font color, for each text a different color. Hold on, you know how to do that? Thank you
<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.
first you have to show the code so we can know what you’re talking about, right because there’s no way to answer without knowing what it is
– user28266