| 5 |
exit(); |
exit(); |
| 6 |
} |
} |
| 7 |
|
|
| 8 |
|
require_once "../lib/common.inc.php"; |
| 9 |
|
require_once "../lib/lml.inc.php"; |
| 10 |
|
require_once "../lib/str_process.inc.php"; |
| 11 |
require_once "../lib/astro.inc.php"; |
require_once "../lib/astro.inc.php"; |
| 12 |
?> |
?> |
| 13 |
<html> |
<html> |
| 15 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 16 |
<title>查看用户资料</title> |
<title>查看用户资料</title> |
| 17 |
<link rel="stylesheet" href="<?= get_theme_file('css/default'); ?>" type="text/css"> |
<link rel="stylesheet" href="<?= get_theme_file('css/default'); ?>" type="text/css"> |
|
<script type="text/javascript" src="../js/img_adjust.js"></script> |
|
| 18 |
<script src="../js/polyfill.min.js"></script> |
<script src="../js/polyfill.min.js"></script> |
| 19 |
<script src="../js/axios.min.js"></script> |
<script src="../js/axios.min.js"></script> |
| 20 |
<script type="text/javascript"> |
<script type="text/javascript"> |
| 32 |
return false; |
return false; |
| 33 |
} |
} |
| 34 |
|
|
| 35 |
instance.post('transfer_score_sub.php', { |
instance.post('user_service_transfer_score.php', { |
| 36 |
uid: <?= $result_set["data"]["uid"]; ?>, |
uid: <?= $result_set["data"]["uid"]; ?>, |
| 37 |
amount: f.amount.value, |
amount: f.amount.value, |
| 38 |
}) |
}) |
| 292 |
</td> |
</td> |
| 293 |
<td> |
<td> |
| 294 |
<?= $result_set["data"]["last_tm"]->format("Y年m月d日 H:i:s"); ?> |
<?= $result_set["data"]["last_tm"]->format("Y年m月d日 H:i:s"); ?> |
| 295 |
|
<?php |
| 296 |
|
foreach($result_set["data"]["current_action"] as $current_action) |
| 297 |
|
{ |
| 298 |
|
$current_action_name = (isset($BBS_user_actions[$current_action]) ? $BBS_user_actions[$current_action] : $current_action); |
| 299 |
|
if ($current_action_name != "") |
| 300 |
|
{ |
| 301 |
|
echo " <font color=green>[" . $current_action_name . "]</font>"; |
| 302 |
|
} |
| 303 |
|
} |
| 304 |
|
?> |
| 305 |
</td> |
</td> |
| 306 |
</tr> |
</tr> |
| 307 |
<tr> |
<tr> |
| 420 |
<table border="0" cellspacing="0" cellpadding="0" width="80%"> |
<table border="0" cellspacing="0" cellpadding="0" width="80%"> |
| 421 |
<tr> |
<tr> |
| 422 |
<td style="color:gray; font-size:14px;"> |
<td style="color:gray; font-size:14px;"> |
| 423 |
<?= LML(htmlspecialchars($result_set["data"]["introduction"], ENT_HTML401, 'UTF-8'), true, true, 80); ?> |
<pre><?= split_line(LML($result_set["data"]["introduction"], 80), "", 0, 10); ?></pre> |
| 424 |
</td> |
</td> |
| 425 |
</tr> |
</tr> |
| 426 |
</table> |
</table> |