View Single Post
  #10  
Old 28th October 2017, 13:07
HP HP is offline
Banned
 
Join Date: Jul 2017
Posts: 10
Thumbs up
Quote:
Originally Posted by Chez View Post
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";} 
Noted its something im working on for tsse 5.7 many thax one and all
Reply With Quote