I want to show the Visits for the current day on a homepage. That page is tracked with Piwik.

How to use the API with PHP to get the (unique) visits and hits for today so that I can show them somewhere on the page

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
$result = file_get_contents("http://mysite.com/piwik/?module=API&method=VisitsSummary.getUniqueVisitors&idSite=1&period=day&date=today&format=php");
echo unserialize($result);
link|improve this answer
how to do this in php instead of the REST API? – Sami Al-Subhi Feb 11 at 7:10
What do you mean? This is php. – Mischa Feb 11 at 10:49
see this section Call the Piwik API in PHP in this page piwik.org/docs/analytics-api/calling-techniques – Sami Al-Subhi Feb 11 at 13:12
I have a question on this stackoverflow.com/questions/9238534/… I have not looked at the answer there but I will check it now. – Sami Al-Subhi Feb 11 at 13:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.