i am running an uploading website, and want to keep track of uploads....
i use: (uc is upload count)
Username Password uc
how do i add to the uc value in my MySQL table?
I count logins. When a user logs in I collect his "count" from the db and call it $count. Then when he is verified I update the db using $count = ($count + 1).
I suppose you could do something along those lines when the upload is confirmed.