123456789101112131415161718192021222324252627282930313233 |
- <?php
- function dw_wik_places() {
- $url = "https://davidawindham.com/wik/";
- $url .= "?module=API&method=UserCountry.getCity";
- $url .= "&idSite=1&period=month&date=yesterday";
- $url .= "&format=PHP&filter_limit=20";
- $url .= "&token_auth=d97e3e8f34071515ad1f6e345f6035af";
- $fetched = file_get_contents($url);
- $content = unserialize($fetched);
- if (!$content) {
- print("Error, content fetched = " . $fetched);
- }
- foreach ($content as $row) {
- $location = htmlspecialchars(html_entity_decode(urldecode($row['label']), ENT_QUOTES), ENT_QUOTES);
- $hits = $row['nb_visits'];
- $actions = $row['nb_actions'];
- $logo = $row['logo'];
- $length = $row['sum_visit_length'];
- print("<li class='list-group-item'><img src='https://davidawindham.com/wik/$logo'/> $location ( $hits hits ) <span class='badge'> $actions </span></li>");
- }
- }
- function dw_wik() {
-
- }
- ?>
|