/[LeafOK_CVS]/fenglin/manage/photo_list.php
ViewVC logotype

Diff of /fenglin/manage/photo_list.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.1 by sysadm, Mon Apr 14 02:11:42 2025 UTC Revision 1.2 by sysadm, Wed Apr 23 05:13:57 2025 UTC
# Line 1  Line 1 
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    
# Line 73  Line 73 
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  <?  <?


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1