prepare("SELECT * FROM assets WHERE account_id = ? AND balance > 0");
$stmt->execute([$account['id']]);
$assets = $stmt->fetchAll();
include 'header.php';
?>
我的资产
| 币种 |
可用余额 |
冻结金额 |
操作 |
USDT
|
|
0.00 |
交易 |
|
|
|
|
交易 |
prepare("SELECT * FROM transactions WHERE account_id = ? ORDER BY timestamp DESC LIMIT 5");
$stmt->execute([$account['id']]);
$txs = $stmt->fetchAll();
if (empty($txs)):
?>
| 暂无记录 |
|
|
|
|