%PDF- %PDF-
| Direktori : /www/old2/_music/jabbarchive/ |
| Current File : /www/old2/_music/jabbarchive/roster_flat.php |
<h1>Flat history roster</h1>
<table border="1" width="95%" align="center">
<tr>
<th width="70%">JID</th>
<th width="30%">Messages</th>
</tr>
<?php
//$usr = $_SERVER['PHP_AUTH_USER'];
$res = q("select distinct rosterusers.nick, count(rosterusers.nick), archive.them from archive, rosterusers where us='$us' and rosterusers.username='$user' and replace(rosterusers.jid, '\\\\40', ' ')=archive.them group by rosterusers.nick, archive.them order by rosterusers.nick");
$i = 0;
foreach($res as $r)
{
$i++;
if(trim($r[0]) == "") $r[0] = $r[2];
$style = $i % 2 ? "odd" : "even";
echo "<tr class=\"$style\">
<td width=\"70%\"><a href=\"index.php?what=history-flat&them=".urlencode($r[2])."\">{$r[0]}</a></th>
<td width=\"30%\">{$r[1]}</th>
</tr>\n";
}
?>
</table>