source:
OpenPNE/trunk/webapp/lib/db/rank.php
@
1265
Last change on this file since 1265 was 1265, checked in by , 16 years ago | |
---|---|
File size: 251 bytes |
Line | |
---|---|
1 | <?php |
2 | |
3 | //ポイントからランクを取得 |
4 | function db_point_get_rank4point($point) |
5 | { |
6 | $sql = "SELECT * FROM c_rank WHERE point <= ? ORDER BY point DESC"; |
7 | $params = array(intval($point)); |
8 | return db_get_row($sql, $params); |
9 | } |
10 | |
11 | ?> |
Note: See TracBrowser
for help on using the repository browser.