Como faço para o script abaixo mudar a cor da fonte quando o texto for igual a VENDA

PHP

28/02/2023

}
.style6 {font-size: 12px}
.style7 {
font-size: 30px;
font-weight: bold;
}


<td><span class="style6">
<?=$cliente->status?>
</span></td>
Cairo Oliveira

Cairo Oliveira

Curtidas 0

Respostas

Frank Hosaka

Frank Hosaka

28/02/2023

<style>
.style6 {font-size: 12px}
.style7 {font-size: 30px;font-weight: bold;}
</style>
<?php
function teste($texto){
  if($texto=="venda"){$style="style7";} else {$style="style6";}
  echo "<table><tr><td class=$style>$texto</table>" ;}
echo teste("venda");
echo teste("frank");
GOSTEI 0
POSTAR