tagClound.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. require_once 'conn.php';
  3. checkLogin();
  4. ?>
  5. <!DOCTYPE html>
  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. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  12. <script src="system/js/jquery-1.7.2.min.js"></script>
  13. <script src="js/js.js"></script>
  14. <style>
  15. body {
  16. margin: 0;
  17. padding: 20px;
  18. background: #fff;
  19. }
  20. #man_zone {
  21. margin-left: 0;
  22. }
  23. </style>
  24. </head>
  25. <body class="clear">
  26. <?php // require_once 'panel.php'; ?>
  27. <div id="man_zone">
  28. <div class="tagclound">
  29. <h1 class="tagCloundHead">自定义标签云</h1>
  30. <div class="tagArea">
  31. <?php
  32. $result = $conn->query("SELECT tagName, COUNT(DISTINCT cs_code) as count
  33. FROM tagTable
  34. LEFT JOIN customer ON tagTable.customerId=customer.id
  35. WHERE employeeId=" . $_SESSION['employee_id'] . "
  36. GROUP BY tagName");
  37. while ($row = $result->fetch_assoc()) {
  38. ?>
  39. <a href="tag.php?tagName=<?= urlencode($row['tagName']) ?>" style="font-size:16px;">
  40. <?= htmlspecialcharsFix($row['tagName']) ?>(<?= $row['count'] ?>)
  41. </a>
  42. <?php
  43. }
  44. ?>
  45. <a href="nullTag.php">无标签客户</a>
  46. </div>
  47. </div>
  48. </div>
  49. </body>
  50. </html>