How can I change the font colour using PHP, say if I had the code:
<?php
if ($HTTP_GET_VARS['category'] == "HARDWARE FAULT"
$Priority = "Amber";
?>
I bring up the variable $priority in a txt box within a form later on. I want the colour to actually be an amber colour if possible but as its in PHP I am unsure how to do this. Cheers all!
<?php
if ($HTTP_GET_VARS['category'] == "HARDWARE FAULT"
$Priority = "Amber";
?>
I bring up the variable $priority in a txt box within a form later on. I want the colour to actually be an amber colour if possible but as its in PHP I am unsure how to do this. Cheers all!