Developing a php system that tracks other websites analytics
I want to develop a PHP website feature where users sign up, get a javascript snippet code that display an image on their site, and let's me track the number of visitors, unique hits, clicks and average visitor duration on their page. Is that something that should be done with some open source analytic software such as http://piwik.org/ or it's pretty doable on your own?
If I had to do it myself from scratch, I would use image/pixel as a way to track the visit, drop a cookie with javascript snippet to track uniques, track clicks based on image click and redirect, and not sure about the bounce rate.
Any thoughts or opinions are welcome.
To record the traffic is very simple. BUT, and that's a big but for a few things to keep in mind:
If you are thinking about doing this for commercial purpose, there's already a few pretty big players in this space so do some research before making big commitments.
链接地址: http://www.djcxy.com/p/63474.html上一篇: 跟踪用户分析的最佳方式?
下一篇: 开发一个跟踪其他网站分析的php系统