Quote:
Originally Posted by clauz
How can I see click/impresion history on some banner / time period?
Can I chose a time interval and see click and impresions numbers?
|
You may extract some data from the rbs_hits table using phpMyAdmin, e.g. (for the clicks):
Code:
SELECT COUNT(*)
FROM rbs_hits
WHERE bannerid=123
AND dateline BETWEEN UNIX_TIMESTAMP('2012-01-01') AND UNIX_TIMESTAMP('2012-01-31')
The impressions counter is not traceable and would make no much sense.