| 1 |
<? |
<?php |
| 2 |
require_once "../lib/db_open.inc.php"; |
require_once "../lib/db_open.inc.php"; |
| 3 |
require_once "../bbs/session_init.inc.php"; |
require_once "../bbs/session_init.inc.php"; |
| 4 |
|
|
| 73 |
处理 |
处理 |
| 74 |
</td> |
</td> |
| 75 |
</tr> |
</tr> |
| 76 |
<? |
<?php |
| 77 |
foreach ($result_set["data"]["user_photos"] as $user_photo) |
foreach ($result_set["data"]["user_photos"] as $user_photo) |
| 78 |
{ |
{ |
| 79 |
?> |
?> |
| 80 |
<tr height=20> |
<tr height=20> |
| 81 |
<td align="middle"> |
<td align="middle"> |
| 82 |
<? echo $user_photo["username"]; ?> |
<?= $user_photo["username"]; ?> |
| 83 |
</td> |
</td> |
| 84 |
<td align="middle"> |
<td align="middle"> |
| 85 |
<img src="../bbs/images/face/upload_photo/face_<? echo $user_photo["uid"] . "." . $user_photo["photo_ext"]; ?>"> |
<img src="../bbs/images/face/upload_photo/face_<?= $user_photo["uid"] . "." . $user_photo["photo_ext"]; ?>"> |
| 86 |
</td> |
</td> |
| 87 |
<td align="middle"> |
<td align="middle"> |
| 88 |
<a href="photo_process.php?enable=1&p_id=<? echo $user_photo["uid"]; ?>">通过</a><br> |
<a href="photo_process.php?enable=1&p_id=<?= $user_photo["uid"]; ?>">通过</a><br> |
| 89 |
<a href="photo_process.php?enable=0&p_id=<? echo $user_photo["uid"]; ?>" onclick="return window.confirm('真的要拒绝吗?');">拒绝</a> |
<a href="photo_process.php?enable=0&p_id=<?= $user_photo["uid"]; ?>" onclick="return window.confirm('真的要拒绝吗?');">拒绝</a> |
| 90 |
</td> |
</td> |
| 91 |
</tr> |
</tr> |
| 92 |
<? |
<? |