Thread: Custom Title!
View Single Post
  #4  
Old 25th June 2008, 20:16
djlee's Avatar
djlee djlee is offline
Senior Member
 
Join Date: Mar 2008
Posts: 183
Default Re: Custom Title!
i dont think there was ever a mod was there ?? i never used one anyway lol .. the title is defined by $ARRAY['title'] unless your using a source that has changed from the default title field used by tbdev

so for example in userdetails.php you may have
Code:
echo $row['username']."".get_user_icons($row['id']);
to add the title of the user after username you would put

Code:
echo $row['username']."".$row['title']."".get_user_icons($row['id']);
and if you want to print out the current users title you would use $CURUSER['title'].. its very simple PHP :)
Reply With Quote