Quantcast
Channel: Piwik Forums - Support & Bugs
Viewing all articles
Browse latest Browse all 13117

Re: Very simple counter display on html website

$
0
0
you can make it whit php and the api from your piwik.

my code
--> change
http://mych-studio.com/admin/piwik/index.php == your piwik addres
".$site['idsite']." == id of your site
token == token from a account on piwik
<?php
    $data = json_decode(file_get_contents("http://mych-studio.com/admin/piwik/index.php?module=API&method=VisitsSummary.get&idSite=".$site['idsite']."&period=range&date=2000-01-01,today&format=json&token_auth=token"  , FILE_USE_INCLUDE_PATH), true);
    
 echo 'this site have'.$data['nb_actions'].' vieuws,<br/>From '.$data['nb_visits'].' visiters.';
?>

Viewing all articles
Browse latest Browse all 13117

Trending Articles