View Single Post
  #9  
Old 27th October 2017, 22:41
Chez's Avatar
Chez Chez is offline
Senior Member
 
Join Date: Sep 2011
P2P
Posts: 278
Default
You can create you own function by making a switch statement.
For example:

PHP Code:
function user_class_color($class$username) {
 switch (
$class)
  {
    case 
VIP:
      return 
"<span style='color: red;'>" $username "</span>";
      break;
    case 
USER:
      return 
"<span style='color: blue;'>" $username "</span>";
      break;
  }
    return 
"$username";

__________________
http://www.bvlist.com/images/avatars/signaturepics/sigpic16443_2.gif

Last edited by Chez; 28th October 2017 at 01:43.
Reply With Quote