mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-05-19 00:30:21 -07:00
26 lines
760 B
PHP
26 lines
760 B
PHP
<?php
|
|
require "lib/function.php";
|
|
require "lib/layout.php";
|
|
$cell="$tccellh width=12> </td>$tccellh width=34%>Username";
|
|
print "$header<br>$tblstart$cell</td>$cell</td>$cell<tr>";
|
|
$i=-3;
|
|
$users=mysql_query("SELECT id,name,sex,powerlevel,minipic FROM users WHERE minipic!='' ORDER BY name");
|
|
while($user=mysql_fetch_array($users)){
|
|
$i++;
|
|
$namecolor=getnamecolor($user[sex],$user[powerlevel]);
|
|
print "
|
|
$tccell2><img width=16 height=16 src=$user[minipic]></td>
|
|
$tccell2ls><a href=profile.php?id=$user[id]><font $namecolor>$user[name]</td>
|
|
";
|
|
if(!$i){
|
|
$i=-3;
|
|
print "<tr>";
|
|
}
|
|
}
|
|
while($i){
|
|
$i++;
|
|
print "$tccell2ls </td>$tccell2ls </td>";
|
|
}
|
|
print $tblend.$footer;
|
|
printtimedif($startingtime);
|
|
?>
|