include_once("./_common.php");
include_once("./_head.php");
$sql = "SELECT mb_point, mb_id, mb_nick FROM {$g4['member_table']} order by mb_point desc LIMIT 0,10";
$result = sql_query($sql);
?>
포인트 랭킹
for ($i=1; $row=sql_fetch_array($result); $i++) {
if ($i<= 3) $cla=' class="best"';
else $cla="";
?>
- >=$i?>=$row['mb_nick']?>=number_format($row['mb_point'])?>점
} ?>
include_once("./_tail.php");
?>