mirror of
https://e.coding.net/circlecloud/McAccount.git
synced 2024-11-17 00:58:57 +00:00
7f19057e1a
Signed-off-by: 502647092 <jtb1@163.com>
9 lines
193 B
PHP
9 lines
193 B
PHP
<?php
|
|
class current_model extends AmysqlModel {
|
|
function money_current($user) {
|
|
$sql = "SELECT * FROM `iconomy` WHERE `username` = '" . $user;
|
|
return $this->_all ( $sql );
|
|
}
|
|
}
|
|
|
|
?>
|