itstd, it should work for you board now
anti online, open room.php
find:
PHP Code:
for ($i=0; $i < $numberactions; $i++)
{
$add[$i] = '<tr>
<td>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="18%">'.$displayavatar[$i].'</td>
<td width="82%"><center>'.$display[$i].'</center></td>
</tr>
</table>
</td>
</tr>';
$texts = $texts.$add[$i];
$i++;
$add[$i] = ' <tr>
<td>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="82%"><center>'.$display[$i].'</center></td>
<td width="18%">'.$displayavatar[$i].'</td>
</tr>
</table>
</td>
</tr>';
$texts = $texts.$add[$i];
}
and replace with
PHP Code:
for ($i=0; $i < $numberactions; $i++)
{
$add[$i] = '<tr>
<td>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="18%">'.$username.'<br>'.$displayavatar[$i].'</td>
<td width="82%"><center>'.$display[$i].'</center></td>
</tr>
</table>
</td>
</tr>';
$texts = $texts.$add[$i];
$i++;
$add[$i] = ' <tr>
<td>
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="82%"><center>'.$display[$i].'</center></td>
<td width="18%">'.$username.'<br>'.$displayavatar[$i].'</td>
</tr>
</table>
</td>
</tr>';
$texts = $texts.$add[$i];
}
i have not tested it, but it should work
If it does not, then let me know
For anyone who did not read his request, this coding should put the username above the avatars.