[Solved] Converting php number value to words with colour [closed]


There been a lot of great answers on this question of mine but if anyone looking for a quick fix in this case the following works for me

<?php
if ($fs1 > 0) {
    echo "<p style="color:#0F3">Win<p>";
} else {
    echo "<p style="color:#F00">Lose<p>";
}
?>

with $fs1 being the row that i am getting the value from

Without the links within the answeres i would never of found out how to do it

solved Converting php number value to words with colour [closed]