12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- require_once 'conn.php';
- checkLogin();
- ?>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>管理区域</title>
- <link rel="stylesheet" href="css/common.css" type="text/css" />
- <link rel="stylesheet" href="css/alert.css" type="text/css" />
- <script src="system/js/jquery-1.7.2.min.js"></script>
- <script src="js/js.js"></script>
- </head>
- <body class="clear">
- <?php require_once 'panel.php'; ?>
- <div id="man_zone">
- <?php
- $result = $conn->query("SELECT id, em_user FROM employee WHERE em_role=" . $_SESSION['employee_id']);
- while ($row = $result->fetch_assoc()) {
- ?>
- <div class="tagclound">
- <h1 class="tagCloundHead2"><?= htmlspecialchars($row['em_user']) ?>的客户画像:</h1>
- <div class="tagArea">
- <?php
- $tagResult = $conn->query("SELECT tagName, COUNT(id) as count FROM tagTable WHERE employeeId=" . (int)$row['id'] . " GROUP BY tagName");
- while ($tagRow = $tagResult->fetch_assoc()) {
- ?>
- <a href="subTag.php?employeeId=<?= $row['id'] ?>&tagName=<?= urlencode($tagRow['tagName']) ?>"><?= htmlspecialchars($tagRow['tagName']) ?>(<?= $tagRow['count'] ?>)</a>
- <?php
- }
- ?>
- </div>
- </div>
- <?php
- }
- ?>
- </div>
- </body>
- </html>
|