Размер файла: 684B
<?php
class gusers
{
function readUsers ($users = null)
{
if (empty ($users))
{
echo "<div class='".DIV_SECTION_1."'>Пользователей еще не было<br />
Вы можете стать первым :)</div>";
return false;
}
foreach ($users AS $user)
{
echo "<div class='".alternDivs (DIV_SECTION_1, DIV_SECTION_2)."'>
<img src='icons/sex_".intval ($user->user_sex).".png' alt='' /> ".filtOut ($user->user_nick)." [ID".intval ($user->id)."]<br /> <img src='icons/balls.png' alt='' /> ".round ($user->balls, 2)." <img src='icons/brain.png' alt='' /> $user->quiz_balls <img src='icons/msg.png' alt='' /> $user->msgs</div>";
}
}
}