Sure, you can count database hits. At some point after a database has been queried, add something like this.
UPDATE `table_name` SET `hit_counter` = `hit_counter` + 1 WHERE `condition` = 1;
With this you've added an integer field to the table you want to count hits on and are incrementing that field by one each time it is accessed.
HTH!
Regards,
Rich
--
[
http://www.smilingsouls.net]
[
http://pear.php.net/Mail_IMAP] A PHP/C-Client/PEAR solution for webmail