View Single Post
  #6  
Old 03-19-2011, 08:54 AM
The Codfin Keeper's Avatar
The Codfin Keeper The Codfin Keeper is offline
A Codfin draws near!
 
Join Date: Jan 2011
Location: Either CT or the Slug's house
Posts: 91
Gender: Male
Credits: 15,458
The Codfin Keeper is on a distinguished road
Default

It means to go to profile.php and where it has this;

PHP Code:
$usersname=@mysql_result($result,$i,"username");
$usersgroup=@mysql_result($result,$i,"usergroup");
$website=@mysql_result($result,$i,"website");
$aim=@mysql_result($result,$i,"aim");
$yahoo=@mysql_result($result,$i,"yahoo");
$msn=@mysql_result($result,$i,"msn");
$membersince=@mysql_result($result,$i,"membersince");
$avatar=@mysql_result($result,$i,"avatar"); 
Add this:

PHP Code:
$uid=@mysql_result($result,$i,"uid"); 
And where it has something like this:

PHP Code:
$article_content "<b><u>".$lang_basic_info."".$usersname.":</u></b><br><br> 
Change it to:

PHP Code:
$article_content "<b><u>".$lang_basic_info."".$usersname."(#".$uid.") :</u></b><br><br> 
And it should display the user number.
__________________

Yacker
Quote:
Originally Posted by Mankey Pokemon Card when another one is on top of it
([33) Ka\______
Does 40 damage\___
counter on Mankey. \______
Reply With Quote