that worked great
this is the code i use for all three items: username color, usertitle color, and username glow color
i think it gets confused when setting the username colors and glow colors, cause the names only seem to glow red no matter what hex code it entered
PHP Code:
if($post[posts]>1500) $post[usertitle]="<font color=".$post[field7].">".$post[usertitle]."</font>";
if($post[posts]>2000) $post[username]="<font color=".$post[field6].">".$post[username]."</font>";
if ($post['posts'] > 5000 && $post['field9']) {
$post['username'] = '<span style=height:10;filter:glow(color=".$post[field9]." strength="1")>' . $post[username] . '</span>';
}
i changed the ".$post[field9]." to #FFFFFF and everyone's name glowed white, so the code works. is there a way to combine the two if statements (username color and username glow color)?