tagClound.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 c.cs_code) as count
  33. FROM tagtable t
  34. LEFT JOIN customer c ON t.customerId = c.id
  35. WHERE t.employeeId = " . $_SESSION['employee_id'] . "
  36. GROUP BY tagName");
  37. if ($result) {
  38. while ($row = $result->fetch_assoc()) {
  39. echo '<a href="tag.php?tagName=' . urlencode($row['tagName']) . '" style="font-size:16px;">' .
  40. htmlspecialcharsFix($row['tagName']) . '(' . $row['count'] . ')</a>';
  41. }
  42. }
  43. ?>
  44. <a href="nullTag.php">无标签客户</a>
  45. </div>
  46. </div>
  47. </div>
  48. </body>
  49. </html>