9 lines
344 B
PHP
Executable File
9 lines
344 B
PHP
Executable File
<?php
|
|
require_once '../config.php';
|
|
$db = new PDO("sqlite:../db/dns.sqlite");
|
|
|
|
$topDomains = $db->query("SELECT domain, COUNT(*) as hits FROM logs GROUP BY domain ORDER BY hits DESC LIMIT 10")->fetchAll(PDO::FETCH_ASSOC);
|
|
echo json_encode($topDomains);
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL); |