pic.php 4.6 KB

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