Jump to content
MakeWebGames

Repo

Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Repo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. ok forget the streching, anyone else have a problem with when there is more than one person in the room having the chat.txt save what people post but doing it double?   example if you type 1234 it posts in the chat room as 12341234
  2. loaded, works fine, great job and thanks. Now i am ready to get laughed at for asking a n00b question. Anyone know a way to make the text wrap so it doesn't streach out the page?
  3. To make it show on the view user page you need to find   $r=$db->fetch_row($q);   and right under it add   $m=$db->query("SELECT * FROM users WHERE userid={$r['married']}"); $par=$db->fetch_row($m);   This is in addition to what was posted earlier by someone else.
  4. To make this show on the index.php you need to find     $exp=(int)($ir['exp']/$ir['exp_needed']*100);   Then under that add   $m=$db->query("SELECT * FROM users WHERE userid='{$ir['married']}'"); $par=$db->fetch_row($m); if($ir['married'] != 0) { $partner= "[url='viewuser.php?u={$par[']<font color=green>{$par['username']}</font>[/url] [[url='partner.php']Manage[/url]]"; } else { $partner= "<font color=red>N/A</font>"; }   Then add   [b]Married:[/b] $partner   Wherever you want it to show.
×
×
  • Create New...