The following SQL will display a list of members who have surfed today and order them with the busiest at the top. To use this SQL login to your BCP and select Advanced SQL Viewer. Cut and paste it into the custom SQL text box and press submit.

CODE
SELECT vtp_members.id, vtp_members.name, vtp_members.email, count(vtp_tracking.id) hits_today
FROM vtp_members, vtp_tracking
WHERE vtp_tracking.credit_members_id=vtp_members.id
AND vtp_tracking.action_date=curdate()
GROUP BY vtp_members.id
ORDER BY hits_today DESC