pic.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. include "conn.php";
  3. checkLogin("");
  4. // Move all header operations to the top
  5. $act = $_GET['act'] ?? '';
  6. $cpid = $_GET['cpid'] ?? '';
  7. $page = $_GET['Page'] ?? '';
  8. $keys = urlencode($_GET['Keys'] ?? '');
  9. $ord = urlencode($_GET['Ord'] ?? '');
  10. // Check cpid validity before any output
  11. if ($cpid == "" || !is_numeric($cpid)) {
  12. header("Location: protector.php");
  13. exit;
  14. }
  15. // Handle postchk action
  16. if ($act == "postchk") {
  17. if (isset($_POST['chkbox']) && is_array($_POST['chkbox'])) {
  18. foreach ($_POST['chkbox'] as $id) {
  19. $id = (int)$id;
  20. $result = $conn->query("SELECT picurl FROM pic WHERE id = " . $id);
  21. if ($row = $result->fetch_assoc()) {
  22. if (strpos($row['picurl'], '/system/') === 0) {
  23. $delfile = $_SERVER['DOCUMENT_ROOT'] . $row['picurl'];
  24. if (file_exists($delfile)) {
  25. unlink($delfile);
  26. }
  27. }
  28. $conn->query("DELETE FROM pic WHERE id = " . $id);
  29. }
  30. }
  31. }
  32. header("Location: ?Keys=$keys&Ord=$ord&Page=$page&cpid=$cpid");
  33. exit;
  34. }
  35. // Now start HTML output
  36. ?>
  37. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  38. <html xmlns="http://www.w3.org/1999/xhtml">
  39. <head>
  40. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  41. <title>管理区域</title>
  42. <link rel="stylesheet" href="css/common.css" type="text/css" />
  43. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  44. <script type="text/javascript" src="js/js.js"></script>
  45. </head>
  46. <body>
  47. <div id="man_zone">
  48. <?php
  49. // Get pictures for display
  50. $result = $conn->query("SELECT id, picurl FROM pic WHERE cpid = " . (int)$cpid . " ORDER BY id DESC");
  51. ?>
  52. <form method="post" name="form2" style="padding:5px;" action="picupload.php?cpid=<?php echo $cpid; ?>&Page=<?php echo $page; ?>&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>"
  53. enctype="multipart/form-data" onsubmit="if(this.filedata.value==''){return false;}" style="margin-bottom:10px;">
  54. <input type="file" name="filedata" id="filedata" style="float:left;height:20px;border:1px solid #DBE6E3;background:#FFF;width:300px;margin-right:20px;" />
  55. <input type="submit" value="上传" class="btn1" style="margin-left:10px" />
  56. </form>
  57. <form id="form1" method="post" action="?act=postchk&cpid=<?php echo $cpid; ?>&Page=<?php echo $page; ?>&Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>" onSubmit="return false">
  58. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  59. <thead>
  60. <tr>
  61. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox')" /></th>
  62. <th width="6%">序号</th>
  63. <th width="35%">缩略图</th>
  64. </tr>
  65. </thead>
  66. <tbody>
  67. <?php
  68. if ($result->num_rows > 0) {
  69. $tempNum = 0;
  70. while ($row = $result->fetch_assoc()) {
  71. $tempNum++;
  72. ?>
  73. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  74. <td align="center"><input type="checkbox" name="chkbox[]" value="<?php echo $row['id']; ?>" /></td>
  75. <td align="center"><?php echo $tempNum; ?></td>
  76. <td align="center"><img src="<?php echo $row['picurl']; ?>" height="50" /></td>
  77. </tr>
  78. <?php
  79. }
  80. } else {
  81. ?>
  82. <tr>
  83. <td align="center" colspan="4">当前还没有图片</td>
  84. </tr>
  85. <?php
  86. }
  87. ?>
  88. </tbody>
  89. <tfoot>
  90. <tr>
  91. <td colspan="4">
  92. <div class="postchkbox">
  93. <select id="chkact" name="chkact">
  94. <option value="-1">删除</option>
  95. </select>
  96. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  97. <input type="button" value="返回" onClick="location.href='product.php?Keys=<?php echo $keys; ?>&Ord=<?php echo $ord; ?>&Page=<?php echo $page; ?>&act=edit&id=<?php echo $cpid; ?>'" class="btn1" />
  98. </div>
  99. </td>
  100. </tr>
  101. </tfoot>
  102. </table>
  103. </form>
  104. </div>
  105. </body>
  106. </html>