mirror of
				https://e.coding.net/circlecloud/McAccount.git
				synced 2025-11-03 17:56:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			197 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			197 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class current_model extends AmysqlModel {
 | 
						|
	function money_current($user) {
 | 
						|
		$sql = "SELECT * FROM `iconomy` WHERE `username` = '" . $user . "'";
 | 
						|
		return $this->_row ( $sql );
 | 
						|
	}
 | 
						|
}
 | 
						|
?>
 |