tagClound.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. </head>
  15. <body class="clear">
  16. <?php require_once 'panel.php'; ?>
  17. <div id="man_zone">
  18. <div class="tagclound">
  19. <h1 class="tagCloundHead">自定义标签云</h1>
  20. <div class="tagArea">
  21. <?php
  22. $result = $conn->query("SELECT tagName, COUNT(DISTINCT cs_code) as count
  23. FROM tagTable
  24. LEFT JOIN customer ON tagTable.customerId=customer.id
  25. WHERE employeeId=" . $_SESSION['employee_id'] . "
  26. GROUP BY tagName");
  27. while ($row = $result->fetch_assoc()) {
  28. ?>
  29. <a href="tag.php?tagName=<?= urlencode($row['tagName']) ?>" style="font-size:16px;">
  30. <?= htmlspecialchars($row['tagName']) ?>(<?= $row['count'] ?>)
  31. </a>
  32. <?php
  33. }
  34. ?>
  35. <a href="nullTag.php">无标签客户</a>
  36. </div>
  37. </div>
  38. </div>
  39. </body>
  40. </html>