subTag.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <?php
  19. $result = $conn->query("SELECT id, em_user FROM employee WHERE em_role=" . $_SESSION['employee_id']);
  20. while ($row = $result->fetch_assoc()) {
  21. ?>
  22. <div class="tagclound">
  23. <h1 class="tagCloundHead2"><?= htmlspecialchars($row['em_user']) ?>的客户画像:</h1>
  24. <div class="tagArea">
  25. <?php
  26. $tagResult = $conn->query("SELECT tagName, COUNT(id) as count FROM tagTable WHERE employeeId=" . (int)$row['id'] . " GROUP BY tagName");
  27. while ($tagRow = $tagResult->fetch_assoc()) {
  28. ?>
  29. <a href="subTag.php?employeeId=<?= $row['id'] ?>&tagName=<?= urlencode($tagRow['tagName']) ?>"><?= htmlspecialchars($tagRow['tagName']) ?>(<?= $tagRow['count'] ?>)</a>
  30. <?php
  31. }
  32. ?>
  33. </div>
  34. </div>
  35. <?php
  36. }
  37. ?>
  38. </div>
  39. </body>
  40. </html>