I want to change the colour of some text and it has to be inside double quotation marks as it is a variable. This is the only instance in which it happens so I won't bother with CSS.
echo "$playername ";
I tried
echo "<font color="yellow"> $playername </font>" ;
But it is not working, I assume this is because it does not like double quotes inside double quotes. Any help would be much appreciated.