diff --git a/homepage/redesign2018/markdownExperiment/admin/phpcount/phpcountLog.php b/homepage/redesign2018/markdownExperiment/admin/phpcount/phpcountLog.php
index 6ecee2a..d2c816c 100644
--- a/homepage/redesign2018/markdownExperiment/admin/phpcount/phpcountLog.php
+++ b/homepage/redesign2018/markdownExperiment/admin/phpcount/phpcountLog.php
@@ -24,6 +24,12 @@ try{
);
$uniqueHitsQuery->execute();
$uniqueHitsList = $uniqueHitsQuery->fetchAll(PDO::FETCH_ASSOC);
+
+ $pagehitsQuery = $dbConnection->prepare(
+ "SELECT timeStamp, pageId, userHash FROM `phpcount_pageHits` ORDER BY timeStamp DESC;"
+ );
+ $pagehitsQuery->execute();
+ $pagehitsList = $pagehitsQuery->fetchAll(PDO::FETCH_ASSOC);
}
catch(PDOException $db_error){
die( "Error!: " . $db_error->getMessage() );
@@ -35,13 +41,19 @@ catch(PDOException $db_error){
| date | times |
".$nodupesEntry['date']." | ".$nodupesEntry['anz']."" );
+ echo( "\t\t\t\t | | ".$nodupesEntry['date']." | ".$nodupesEntry['anz']." | |
" );
?>
| Seite | times |
".$uniqueHitsEntry['pageid']." | ".$uniqueHitsEntry['hitcount']."" );
+ echo( "\t\t\t\t | | ".$uniqueHitsEntry['pageid']." | ".$uniqueHitsEntry['hitcount']." | |
" );
+?>
+
+
+ | timeStamp | pageId | userHash |
+".$pagehitsEntry['timeStamp']." | ".$pagehitsEntry['pageId']." | ".substr($pagehitsEntry['userHash'], 0, 5)."... | " );
?>
|