Quote:
Originally Posted by Kirk Y
Well I got bored and decided to see what I could put together, and came up with this:
PHP Code:
$x = 0;
while($x < strlen($this->post['username']) AND $this->post['usergroupid'] == 6)
{
$_color = ($_color == "red") ? "black" : "red";
$post['musername'] .= "<span style='color:".$_color."'>".$this->post['username'][$x]."</span>";
$x++;
}
Dunno how efficient it is, but it does work.
|
Could you please explain on were to place this? is this a plugin?