1
0
mirror of https://e.coding.net/circlecloud/McAccount.git synced 2025-09-05 07:27:21 +00:00

fix many bugs...

Signed-off-by: 502647092 <jtb1@163.com>
This commit is contained in:
502647092
2015-10-13 19:29:11 +08:00
parent 056187c79f
commit 7f19057e1a
14 changed files with 197 additions and 715 deletions

View File

@ -1,10 +1,7 @@
<?php
class current_model extends AmysqlModel {
function money_current($user) {
$sql = "SELECT *
FROM `iconomy`
WHERE `username` = '" . $user . "'
LIMIT 0 , 75";
$sql = "SELECT * FROM `iconomy` WHERE `username` = '" . $user;
return $this->_all ( $sql );
}
}