product_category.php 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659
  1. <?php
  2. require_once('conn.php');
  3. // Check login status
  4. checkLogin("信息管理");
  5. // Initialize all variables
  6. $act = isset($_GET['act']) ? $_GET['act'] : '';
  7. $name = isset($_POST['name']) ? htmlspecialcharsFix($_POST['name']) : '';
  8. $slug = ''; // Removed from form but kept for database compatibility
  9. $description = isset($_POST['description']) ? htmlspecialcharsFix($_POST['description']) : '';
  10. $image = isset($_POST['image']) ? htmlspecialcharsFix($_POST['image']) : '';
  11. $parent_id = isset($_POST['parent_id']) ? intval($_POST['parent_id']) : 0;
  12. $sort_order = isset($_POST['sort_order']) ? intval($_POST['sort_order']) : 0;
  13. $status = 1; // Always enabled
  14. $keys = isset($_GET['Keys']) ? urlencode($_GET['Keys']) : '';
  15. $keyscode = isset($_GET['Keys']) ? htmlspecialcharsFix($_GET['Keys']) : '';
  16. // Handle form submissions
  17. if ($act == 'save') {
  18. $id = isset($_POST['id']) ? $_POST['id'] : '';
  19. $is_edit = (!empty($id) && is_numeric($id));
  20. // Always generate slug based on name (even though it's not shown in the interface)
  21. $slug = strtolower(trim(preg_replace('/[^A-Za-z0-9-]+/', '-', $name)));
  22. // Check if slug exists
  23. $slug_check_sql = "SELECT id FROM product_categories WHERE slug = '" . mysqli_real_escape_string($conn, $slug) . "'" . ($is_edit ? " AND id != " . (int)$id : "");
  24. $slug_check_result = mysqli_query($conn, $slug_check_sql);
  25. if (mysqli_num_rows($slug_check_result) > 0) {
  26. // Slug already exists, append a unique identifier
  27. $slug .= '-' . time();
  28. }
  29. if ($is_edit) {
  30. // Update existing category
  31. $sql = "UPDATE product_categories SET
  32. name = '" . mysqli_real_escape_string($conn, $name) . "',
  33. slug = '" . mysqli_real_escape_string($conn, $slug) . "',
  34. parent_id = " . $parent_id . ",
  35. description = '" . mysqli_real_escape_string($conn, $description) . "',
  36. image = '" . mysqli_real_escape_string($conn, $image) . "',
  37. sort_order = " . $sort_order . ",
  38. updated_at = NOW()
  39. WHERE id = " . (int)$id;
  40. mysqli_query($conn, $sql);
  41. } else {
  42. // Insert new category
  43. $sql = "INSERT INTO product_categories (name, slug, parent_id, description, image, sort_order, status, created_at, updated_at)
  44. VALUES (
  45. '" . mysqli_real_escape_string($conn, $name) . "',
  46. '" . mysqli_real_escape_string($conn, $slug) . "',
  47. " . $parent_id . ",
  48. '" . mysqli_real_escape_string($conn, $description) . "',
  49. '" . mysqli_real_escape_string($conn, $image) . "',
  50. " . $sort_order . ",
  51. 1,
  52. NOW(),
  53. NOW()
  54. )";
  55. mysqli_query($conn, $sql);
  56. }
  57. // Redirect after save
  58. header("Location: ?keys=" . $keys);
  59. exit();
  60. }
  61. // Handle bulk actions
  62. if ($act == 'postchk') {
  63. if (isset($_POST['chkbox']) && isset($_POST['chkact'])) {
  64. $chkact = $_POST['chkact'];
  65. $id_list = array();
  66. foreach ($_POST['chkbox'] as $id) {
  67. if (is_numeric($id)) {
  68. $id_list[] = (int)$id;
  69. }
  70. }
  71. if (!empty($id_list)) {
  72. $ids = implode(',', $id_list);
  73. if ($chkact == '-1') {
  74. // Delete categories
  75. mysqli_query($conn, "DELETE FROM product_categories WHERE id IN($ids)");
  76. // Reset parent_id for child categories of deleted categories
  77. mysqli_query($conn, "UPDATE product_categories SET parent_id = 0 WHERE parent_id IN($ids)");
  78. }
  79. // Status update removed - all categories are enabled by default
  80. }
  81. }
  82. // Redirect after bulk action
  83. header("Location: ?Keys=" . $keys);
  84. exit();
  85. }
  86. // Display edit form
  87. if ($act == 'edit' || $act == 'add') {
  88. $id = isset($_GET['id']) ? $_GET['id'] : '';
  89. $is_edit = (!empty($id) && is_numeric($id) && $act == 'edit');
  90. // Check for parent_id in URL for add mode
  91. if ($act == 'add' && isset($_GET['parent_id']) && is_numeric($_GET['parent_id'])) {
  92. $parent_id = intval($_GET['parent_id']);
  93. // Verify that the parent category exists
  94. $parent_check = mysqli_query($conn, "SELECT id FROM product_categories WHERE id = " . $parent_id);
  95. if (mysqli_num_rows($parent_check) == 0) {
  96. $parent_id = 0; // Reset if parent doesn't exist
  97. }
  98. }
  99. if ($is_edit) {
  100. $sql = "SELECT * FROM product_categories WHERE id = " . (int)$id;
  101. $result = mysqli_query($conn, $sql);
  102. if (mysqli_num_rows($result) > 0) {
  103. $row = mysqli_fetch_assoc($result);
  104. $name = htmlspecialcharsFix($row['name']);
  105. $slug = htmlspecialcharsFix($row['slug']);
  106. $description = htmlspecialcharsFix($row['description']);
  107. $image = htmlspecialcharsFix($row['image']);
  108. $parent_id = $row['parent_id'];
  109. $sort_order = $row['sort_order'];
  110. $status = $row['status'];
  111. } else {
  112. // Category not found
  113. header("Location: ?Keys=" . $keys);
  114. exit();
  115. }
  116. }
  117. ?>
  118. <!DOCTYPE html>
  119. <html>
  120. <head>
  121. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  122. <title>管理区域</title>
  123. <link rel="stylesheet" href="css/common.css" type="text/css" />
  124. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  125. <script type="text/javascript" src="js/js.js"></script>
  126. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  127. <style>
  128. /* 美化搜索区域 */
  129. .search_panel {
  130. /*background-color: #f5f5f5;*/
  131. padding: 15px;
  132. border-radius: 4px;
  133. border: 1px solid #ddd;
  134. margin-bottom: 20px;
  135. }
  136. .search_panel .inputTxt {
  137. width: 300px;
  138. padding: 6px 10px;
  139. border: 1px solid #ccc;
  140. border-radius: 3px;
  141. }
  142. .search_panel .searchgo {
  143. padding: 6px 15px;
  144. margin-left: 10px;
  145. background-color: #337ab7;
  146. color: white;
  147. border: none;
  148. border-radius: 3px;
  149. cursor: pointer;
  150. }
  151. .search_panel .searchgo:hover {
  152. background-color: #286090;
  153. }
  154. /* 新增按钮样式 */
  155. .add_btn {
  156. background-color: #5cb85c;
  157. color: white;
  158. padding: 6px 15px;
  159. border: none;
  160. border-radius: 3px;
  161. cursor: pointer;
  162. font-weight: bold;
  163. }
  164. .add_btn:hover {
  165. background-color: #449d44;
  166. }
  167. /* 表格标题样式 */
  168. .category_title {
  169. font-size: 18px;
  170. font-weight: bold;
  171. margin: 15px 0;
  172. color: #333;
  173. }
  174. /* 表单输入样式增强 */
  175. .txt1 {
  176. width: 90%;
  177. padding: 8px;
  178. border: 1px solid #ccc;
  179. border-radius: 3px;
  180. }
  181. .txt1:focus {
  182. border-color: #66afe9;
  183. outline: 0;
  184. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  185. }
  186. .txt2 {
  187. width: 90%;
  188. height: 150px;
  189. padding: 8px;
  190. border: 1px solid #ccc;
  191. border-radius: 3px;
  192. font-size: 14px;
  193. line-height: 1.42857143;
  194. }
  195. .txt2:focus {
  196. border-color: #66afe9;
  197. outline: 0;
  198. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  199. }
  200. .txt3 {
  201. width: 100px;
  202. padding: 8px;
  203. border: 1px solid #ccc;
  204. border-radius: 3px;
  205. }
  206. .txt3:focus {
  207. border-color: #66afe9;
  208. outline: 0;
  209. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
  210. }
  211. /* 添加子分类链接样式 */
  212. .ico_add {
  213. color: #5cb85c;
  214. font-weight: bold;
  215. text-decoration: none;
  216. }
  217. .ico_add:hover {
  218. color: #449d44;
  219. text-decoration: underline;
  220. }
  221. </style>
  222. <script>
  223. $(document).ready(function(){
  224. $('.txt2').xheditor({
  225. tools:'full',
  226. upLinkUrl:"upload.asp",upLinkExt:"zip,rar,txt,pdf",
  227. upImgUrl:"upload.asp",upImgExt:"jpg,jpeg,gif,png",
  228. upFlashUrl:"upload.asp",upFlashExt:"swf",
  229. upMediaUrl:"upload.asp",upMediaExt:"wmv,avi,wma,mp3,mid"
  230. });
  231. });
  232. </script>
  233. </head>
  234. <body>
  235. <div id="man_zone">
  236. <form name="form1" method="post" action="?act=save&keys=<?php echo $keys; ?>">
  237. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  238. <tbody>
  239. <tr>
  240. <th width="15%">分类名称</th>
  241. <td>
  242. <input type="text" id="name" name="name" value="<?php echo $name; ?>" class="txt1" required />
  243. <input type="hidden" name="id" value="<?php echo $id; ?>" />
  244. </td>
  245. </tr>
  246. <tr>
  247. <th>父分类</th>
  248. <td>
  249. <select name="parent_id" class="select1">
  250. <option value="0">-- 作为一级分类 --</option>
  251. <?php
  252. // Get all categories except current one (if editing)
  253. $exclude_condition = $is_edit ? " WHERE id != " . (int)$id : "";
  254. $categories_sql = "SELECT * FROM product_categories" . $exclude_condition . " ORDER BY parent_id ASC, sort_order ASC, id ASC";
  255. $categories_result = mysqli_query($conn, $categories_sql);
  256. // Build category tree
  257. $all_categories = array();
  258. $cat_tree = array();
  259. // First pass: create an array of all categories
  260. while ($cat_row = mysqli_fetch_assoc($categories_result)) {
  261. $all_categories[$cat_row['id']] = $cat_row;
  262. $all_categories[$cat_row['id']]['children'] = array();
  263. }
  264. // Second pass: build the tree structure
  265. foreach ($all_categories as $cat_id => $category) {
  266. if ($category['parent_id'] == 0) {
  267. // Root category
  268. $cat_tree[$cat_id] = &$all_categories[$cat_id];
  269. } else {
  270. // Child category
  271. if (isset($all_categories[$category['parent_id']])) {
  272. $all_categories[$category['parent_id']]['children'][$cat_id] = &$all_categories[$cat_id];
  273. }
  274. }
  275. }
  276. // Function to output dropdown options recursively
  277. function outputCategoryOptions($categories, $parent_id, $level = 0) {
  278. foreach ($categories as $cat) {
  279. // Skip if it's a child of the category being edited to prevent circular references
  280. if ($GLOBALS['is_edit'] && isChildOf($cat['id'], $GLOBALS['id'], $GLOBALS['all_categories'])) {
  281. continue;
  282. }
  283. $indent = str_repeat('&nbsp;&nbsp;&nbsp;&nbsp;', $level);
  284. $prefix = $level > 0 ? $indent . '└─ ' : '';
  285. $selected = ($parent_id == $cat['id']) ? ' selected="selected"' : '';
  286. echo '<option value="' . $cat['id'] . '"' . $selected . '>' . $prefix . htmlspecialcharsFix($cat['name']) . '</option>';
  287. // Output children
  288. if (!empty($cat['children'])) {
  289. outputCategoryOptions($cat['children'], $parent_id, $level + 1);
  290. }
  291. }
  292. }
  293. // Helper function to check if a category is a child of another
  294. function isChildOf($categoryId, $potentialParentId, $categories) {
  295. if ($categoryId == $potentialParentId) {
  296. return true;
  297. }
  298. if (!isset($categories[$categoryId])) {
  299. return false;
  300. }
  301. $category = $categories[$categoryId];
  302. if ($category['parent_id'] == 0) {
  303. return false;
  304. }
  305. return isChildOf($category['parent_id'], $potentialParentId, $categories);
  306. }
  307. // Output options
  308. outputCategoryOptions($cat_tree, $parent_id);
  309. ?>
  310. </select>
  311. </td>
  312. </tr>
  313. <tr>
  314. <th>排序</th>
  315. <td>
  316. <input type="number" name="sort_order" value="<?php echo $sort_order; ?>" class="txt3" />
  317. <span class="note">数字越小越靠前</span>
  318. </td>
  319. </tr>
  320. <tr>
  321. <th>图片</th>
  322. <td>
  323. <input type="text" name="image" value="<?php echo $image; ?>" class="txt1" />
  324. <span class="note">分类图片URL</span>
  325. </td>
  326. </tr>
  327. <tr>
  328. <th>描述</th>
  329. <td>
  330. <textarea name="description" class="txt2"><?php echo $description; ?></textarea>
  331. </td>
  332. </tr>
  333. <tr>
  334. <th></th>
  335. <td>
  336. <input type="submit" name="save" value="保存" class="btn1" />
  337. <input type="button" value="返回" class="btn1" onClick="location.href='?keys=<?php echo $keys; ?>'" />
  338. </td>
  339. </tr>
  340. </tbody>
  341. </table>
  342. </form>
  343. </div>
  344. </body>
  345. </html>
  346. <?php
  347. } else {
  348. // Display category list
  349. ?>
  350. <!DOCTYPE html>
  351. <html>
  352. <head>
  353. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  354. <title>管理区域</title>
  355. <link rel="stylesheet" href="css/common.css" type="text/css" />
  356. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  357. <script type="text/javascript" src="js/js.js"></script>
  358. <style>
  359. /* 美化搜索区域 */
  360. .search_panel {
  361. /*background-color: #f5f5f5;*/
  362. padding: 15px;
  363. border-radius: 4px;
  364. border: 1px solid #ddd;
  365. margin-bottom: 20px;
  366. }
  367. .search_panel .inputTxt {
  368. width: 300px;
  369. padding: 6px 10px;
  370. border: 1px solid #ccc;
  371. border-radius: 3px;
  372. }
  373. .search_panel .searchgo {
  374. padding: 6px 15px;
  375. margin-left: 10px;
  376. background-color: #337ab7;
  377. color: white;
  378. border: none;
  379. border-radius: 3px;
  380. cursor: pointer;
  381. }
  382. .search_panel .searchgo:hover {
  383. background-color: #286090;
  384. }
  385. /* 新增按钮样式 */
  386. .add_btn {
  387. background-color: #5cb85c;
  388. color: white;
  389. padding: 6px 15px;
  390. border: none;
  391. border-radius: 3px;
  392. cursor: pointer;
  393. font-weight: bold;
  394. }
  395. .add_btn:hover {
  396. background-color: #449d44;
  397. }
  398. /* 表格标题样式 */
  399. .category_title {
  400. font-size: 18px;
  401. font-weight: bold;
  402. margin: 15px 0;
  403. color: #333;
  404. }
  405. /* 添加子分类链接样式 */
  406. .ico_add {
  407. color: #5cb85c;
  408. font-weight: bold;
  409. text-decoration: none;
  410. }
  411. .ico_add:hover {
  412. color: #449d44;
  413. text-decoration: underline;
  414. }
  415. </style>
  416. </head>
  417. <body>
  418. <div id="man_zone">
  419. <form id="form1" method="post" action="?act=postchk&Keys=<?php echo $keys; ?>" onSubmit="return false">
  420. <div class="search_panel">
  421. <div style="display: flex; ">
  422. <div>
  423. <input type="button" value="+ 新增分类" onClick="location.href='?act=add'" class="add_btn" />
  424. </div>
  425. <div style="padding-left: 50px;">
  426. <input type="text" id="keys" class="inputTxt" value="<?php echo $keyscode; ?>" placeholder="请输入搜索关键词" />
  427. <input type="button" id="searchgo" class="searchgo" value="搜索" onClick="location.href='?Keys='+encodeURIComponent(document.getElementById('keys').value)" />
  428. </div>
  429. </div>
  430. </div>
  431. <div class="category_title">产品分类列表</div>
  432. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  433. <thead>
  434. <tr>
  435. <th width="4%"><input type="checkbox" name="chkall" id="chkall" onClick="chkboxall(this,'chkbox[]')" /></th>
  436. <th width="6%">ID</th>
  437. <th width="30%">分类名称</th>
  438. <th width="10%">排序</th>
  439. <th width="10%">类型</th>
  440. <th width="40%">操作</th>
  441. </tr>
  442. </thead>
  443. <tbody>
  444. <?php
  445. // Search condition
  446. $search_condition = '';
  447. if (!empty($keyscode)) {
  448. $search_condition = " WHERE name LIKE '%" . mysqli_real_escape_string($conn, $keyscode) . "%' OR
  449. description LIKE '%" . mysqli_real_escape_string($conn, $keyscode) . "%'";
  450. }
  451. // Get all categories
  452. $sql = "SELECT * FROM product_categories ORDER BY sort_order ASC, id ASC";
  453. $result = mysqli_query($conn, $sql);
  454. // 添加错误检查
  455. if (!$result) {
  456. echo "查询错误: " . mysqli_error($conn) . "<br>";
  457. echo "SQL: " . $sql;
  458. exit;
  459. }
  460. // Build category tree
  461. $categories = array();
  462. $tree = array();
  463. $search_matches = array();
  464. // First pass: create an array of all categories
  465. while ($row = mysqli_fetch_assoc($result)) {
  466. $categories[$row['id']] = $row;
  467. $categories[$row['id']]['children'] = array();
  468. // Check if this category matches the search criteria
  469. if (!empty($keyscode) && (
  470. stripos($row['name'], $keyscode) !== false ||
  471. stripos($row['description'], $keyscode) !== false)) {
  472. $search_matches[$row['id']] = true;
  473. }
  474. }
  475. // Second pass: build the tree structure
  476. foreach ($categories as $id => $category) {
  477. if ($category['parent_id'] == 0) {
  478. // Root category
  479. $tree[$id] = &$categories[$id];
  480. } else {
  481. // Child category
  482. if (isset($categories[$category['parent_id']])) {
  483. $categories[$category['parent_id']]['children'][$id] = &$categories[$id];
  484. }
  485. }
  486. }
  487. // If searching, mark parents of matching categories
  488. if (!empty($search_matches)) {
  489. foreach ($search_matches as $id => $match) {
  490. markParents($id, $categories);
  491. }
  492. }
  493. // Helper function to mark all parent categories
  494. function markParents($categoryId, &$categories) {
  495. if (!isset($categories[$categoryId])) {
  496. return;
  497. }
  498. $categories[$categoryId]['search_match'] = true;
  499. if ($categories[$categoryId]['parent_id'] > 0 && isset($categories[$categories[$categoryId]['parent_id']])) {
  500. markParents($categories[$categoryId]['parent_id'], $categories);
  501. }
  502. }
  503. // Function to display category tree recursively
  504. function displayCategoryTree($categories, $level = 0) {
  505. $temp_num = 0;
  506. foreach ($categories as $category) {
  507. // Skip if searching and neither this category nor any of its children match
  508. if (!empty($GLOBALS['keyscode']) &&
  509. !isset($category['search_match']) &&
  510. !categoryHasMatchingChild($category)) {
  511. continue;
  512. }
  513. $temp_num++;
  514. $indent = str_repeat('&nbsp;&nbsp;&nbsp;&nbsp;', $level);
  515. $prefix = $level > 0 ? $indent . '└─ ' : '';
  516. $highlight = !empty($GLOBALS['keyscode']) &&
  517. (stripos($category['name'], $GLOBALS['keyscode']) !== false ||
  518. stripos($category['description'], $GLOBALS['keyscode']) !== false);
  519. echo '<tr onMouseOver="this.style.background=\'#F7FCFF\'" onMouseOut="this.style.background=\'#FFFFFF\'">';
  520. echo '<td align="center"><input type="checkbox" name="chkbox[]" value="' . $category['id'] . '" /></td>';
  521. echo '<td align="center">' . $category['id'] . '</td>';
  522. echo '<td>' . $prefix;
  523. if ($highlight) {
  524. echo '<strong style="background-color: #fff3cd;">' . htmlspecialcharsFix($category['name']) . '</strong>';
  525. } else {
  526. echo htmlspecialcharsFix($category['name']);
  527. }
  528. // Show subcategory count
  529. if (!empty($category['children'])) {
  530. echo ' <span style="color:#999;">(' . count($category['children']) . '个子分类)</span>';
  531. }
  532. echo '</td>';
  533. echo '<td align="center">' . $category['sort_order'] . '</td>';
  534. echo '<td align="center">';
  535. if ($level == 0) {
  536. echo '一级分类';
  537. } else if ($level == 1) {
  538. echo '二级分类';
  539. } else {
  540. echo $level + 1 . '级分类';
  541. }
  542. echo '</td>';
  543. echo '<td align="center">';
  544. echo '<a href="?Keys=' . $GLOBALS['keys'] . '&act=edit&id=' . $category['id'] . '" class="ico_edit ico">修改</a>';
  545. echo '&nbsp;|&nbsp;';
  546. echo '<a href="?Keys=' . $GLOBALS['keys'] . '&act=add&parent_id=' . $category['id'] . '" class="ico_add ico" style="color:#5cb85c;">添加子分类</a>';
  547. echo '</td>';
  548. echo '</tr>';
  549. // Display children recursively
  550. if (!empty($category['children'])) {
  551. displayCategoryTree($category['children'], $level + 1);
  552. }
  553. }
  554. return $temp_num;
  555. }
  556. // Helper function to check if a category has any child that matches search
  557. function categoryHasMatchingChild($category) {
  558. if (empty($category['children'])) {
  559. return false;
  560. }
  561. foreach ($category['children'] as $child) {
  562. if (isset($child['search_match']) || categoryHasMatchingChild($child)) {
  563. return true;
  564. }
  565. }
  566. return false;
  567. }
  568. if (count($tree) > 0) {
  569. displayCategoryTree($tree);
  570. } else {
  571. ?>
  572. <tr>
  573. <td colspan="8" align="center">
  574. <?php echo empty($keyscode) ? 'Sorry,当前暂无分类信息' : '<a href="?">Sorry,没有找到"' . htmlspecialcharsFix($keyscode) . '"相关的分类,点击返回</a>'; ?>
  575. </td>
  576. </tr>
  577. <?php
  578. }
  579. ?>
  580. </tbody>
  581. <tfoot>
  582. <tr>
  583. <td colspan="8">
  584. <div class="postchkbox">
  585. <select id="chkact" name="chkact">
  586. <option value="-1">删除</option>
  587. </select>
  588. <input type="button" value="执行" onClick="postchk_new(1)" class="btn1" />
  589. </div>
  590. </td>
  591. </tr>
  592. </tfoot>
  593. </table>
  594. </form>
  595. </div>
  596. </body>
  597. </html>
  598. <?php
  599. }
  600. ?>