update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
exit; // REMOVE this line to run the script
|
||||
|
||||
// this token is used to authenticate your API request.
|
||||
// this token is used to authenticate your API request.
|
||||
// You can get the token on the API page inside your Piwik interface
|
||||
$token_auth = 'anonymous';
|
||||
|
||||
|
|
@ -20,11 +20,11 @@ if (!$content) {
|
|||
print("Error, content fetched = " . $fetched);
|
||||
}
|
||||
|
||||
print("<h1>Keywords for the last month</h1>");
|
||||
print("<h1>Keywords for the last month</h1>\n");
|
||||
foreach ($content as $row) {
|
||||
$keyword = htmlspecialchars(html_entity_decode(urldecode($row['label']), ENT_QUOTES), ENT_QUOTES);
|
||||
$hits = $row['nb_visits'];
|
||||
|
||||
print("<b>$keyword</b> ($hits hits)<br>");
|
||||
print("<b>$keyword</b> ($hits hits)<br>\n");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue