View file sots-syet-livebook/user/list.avatar.php

File size: 651B
<?
$s1 = mysql_query("SELECT * FROM `gallery_foto` WHERE `avatar` = '1' ORDER BY `rating` DESC LIMIT 5");
	
?>
<div style="display: block; text-align: center; padding: 3px; padding-bottom: 15px; margin: auto; background: #fbfbfb; position: relative; border-bottom: 1px solid #ececec;border-left: 1px solid #eaeaea; border-right: 1px solid #eaeaea;"><?
while ($photo = mysql_fetch_assoc($s1))
{
	$num++;
	?><div style="display: inline-block; position: relative;  top: <?=($num % 2 ? 0 : 15)?>px; margin-left: -15px;"><img style="border: 3px solid #f7f7f7;border-radius: 100px;" src="/foto/foto50/<?=$photo['id']?>.jpg" /></div><?
}
?>
</div>