So in your server-side code just have the receiving page of the form open a connection to a database and run a SQL statement such as:
Code:
UPDATE tblHits Set Counter = Counter + 1 WHERE Username = 'Fred'
You would create the SQL dynamically and replace Fred with the actual value. Or beeter still write a stored procedure to accept a userbname and update the table if your database supports them.
--
Joe