ive searched this question on google and i’ve found many answers but none of them seem to work in my situation.
i need to echo out a command in orange, but everything i do doesn’t seem to work.
while($row = mysql_fetch_array($result))
{
echo $row ['title_name'];
echo "<br />";
echo $row['date'];
echo "<br />";
echo $row['message'];
echo "<br />";
}
i need the title_name to be in orange "#FF9900"
has any got got any ideas on how i can do this
many thanks Connor
that all