Exemplo n.º 1
0
<?php

require_once "../config.php";
require_once "../function.php";
ob_start();
session_start();
date_default_timezone_set('Asia/Ho_Chi_Minh');
$_SESSION["admin"] = $_COOKIE["admin"];
if ($_SESSION["admin"] != 1) {
    header("refresh: 0; url=/admin.php");
}
require_once "header.php";
echo "<script>\ndocument.getElementById('container').setAttribute('style', 'background: #fff;');\ndocument.getElementById('x1').setAttribute('class', 'active');\n</script>";
echo "\n                    \t<li style='border: 0;'></li>\n                    </ul>\n                </div>\n                <div id='main' style='width: 100%; float: left; padding-left: 19px;'>\n\t\t\t\t<br/>\n\t\t\t\t<form action='' class='jNice'>\n                    \t<fieldset style='width:93%;padding: 10px;margin: 0 0 12px 0;'>\n\t\t\t\t\t\t<legend><b>&nbsp;<img src='./img/statistiques.png'>&nbsp;Thống kê&nbsp;</b></legend>\n\t\t\t\t\t\t<table style='width: 100%'>\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Số thành viên</td>\n\t\t\t\t\t\t<td>" . user_count() . "</td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t<tr class='odd'>\n\t\t\t\t\t\t<td>Số đề kiểm tra</td>\n\t\t\t\t\t\t<td>" . test_count() . "</td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td>Số lượt xem</td>\n\t\t\t\t\t\t<td>" . settings(view) . "</td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t<tr class='odd'>\n\t\t\t\t\t\t<td>Số lượt tải về</td>\n\t\t\t\t\t\t<td>" . download_count() . "</td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</table>\n                        </fieldset>\n\t\t\t\t\t\t<fieldset style='width:93%;padding: 10px;margin: 0 0 12px 0;'>\n\t\t\t\t\t\t<legend><b>&nbsp;<img src='./img/test.png'>&nbsp;Đề kiểm tra mới nhất&nbsp;</b></legend>\n\t\t\t\t\t\t<table cellpadding='0' cellspacing='0' style='width: 100%'>";
$sql = "SELECT * FROM `tests` order by `id` DESC LIMIT 0,5";
$query = @mysql_query($sql);
$record = @mysql_num_rows($query);
// Gán biến tổng số CSDL $record
if ($record != 0) {
    while ($row = @mysql_fetch_array($query)) {
        $i++;
        if ($i % 2 == 0) {
            echo "<tr>";
        } else {
            echo "<tr class='odd'>";
        }
        echo "\n                                <td><a target='_blank' href='../" . strtolower(str_filter($row['title'])) . "." . $row['id'] . ".php'>" . cu_t($row[title], 135) . "</a></td>\n                                <td class='action'><a target='_blank' href='../" . strtolower(str_filter($row['title'])) . "." . $row['id'] . ".php' class='view'>Xem</a><a href='edittest.php?id=" . $row[id] . "' class='edit'>Sửa</a><a href='deltest.php?id=" . $row[id] . "' class='delete'>Xóa</a></td>\n                            </tr>\n";
    }
} else {
    echo "Chưa có đề kiểm tra nào\n                        ";
}
Exemplo n.º 2
0
" data-width="288" data-show-faces="true" data-stream="false" data-show-border="false" data-header="false"></div>
							<div class="clear"></div>
						</div>
						<div class="boxnav">
							<h3 class="titlenav">Thống kê</h3>
							<ul class="menunav">
								<li><a><b class='Statistics'><?php 
echo user_count();
?>
</b> Thành viên</a></li>
								<li><a><b class='Statistics'><?php 
echo test_count();
?>
</b> Đề kiểm tra</a></li>
								<li><a><b class='Statistics'><?php 
echo download_count();
?>
</b> Lượt download</a></li>
								<li style="margin-bottom: -14.6px; border-bottom-color: #cfcdcd; padding-bottom: 2px;"><a><b class='Statistics'><?php 
echo settings(view);
?>
</b> Lượt truy cập</a></li>
								<br/>
							</ul>
							<div class="clear"></div>
						</div>
						<div class="boxnav">
							<h3 class="titlenav">Quảng cáo</h3>
							<div style="text-align:center;padding-top:20px;padding-bottom:20px;">
							<?php 
$x = explode('*|*', settings("ads_1"));