hrm... where would be best to put this little string of if's I wrote out? This way I can just add $userinfo[specialtitle] in place of $userinfo[username] in the templates where I see fit:
PHP Code:
<?
if ( $userinfo[posts] > 500 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=red, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 1000 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=orange, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 1500 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=yellow, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 2000 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=green, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 2500 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=blue, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 3000 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=indigo, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
if ( $userinfo[posts] > 3500 ) { $userinfo[specialtitle] = "<table style=\"filter:glow(color=violet, strength=2)\"><tr><td>$userinfo[username]</td></tr></table>"; }
?>