Maybe this is pretty simple, I was wondering how I can get the most popular pages for the current day I have a counter set that checks how many times a page gets viewed
here is a query for the most viewed: *popular_original = db(db.episodes.id>0).select(orderby=~db.episodes.views, limitby=(0,5)) *my question is how can I modify that query to get the most popular for the current day *cheers Thank You --

