1
0
mirror of https://e.coding.net/circlecloud/McAccount.git synced 2024-11-17 00:58:57 +00:00
McAccount/Model/current_model.php

12 lines
221 B
PHP
Raw Normal View History

2015-10-13 06:26:47 +00:00
<?php
class current_model extends AmysqlModel {
function money_current($user) {
$sql = "SELECT *
FROM `iconomy`
WHERE `username` = '" . $user . "'
LIMIT 0 , 75";
return $this->_all ( $sql );
}
}
?>