I'm saving user actions on my website in my database, and this data will be used for further processing. However, I want to avoid saving my own actions on the website. These are the things I have tried so far -
IP address - My ISP provides me with a dynamic IP, so I dont think I can block away any particular IP address straight away.
/etc/hosts file - Tried putting in the url in this file so that it doesnt send data to that url. Doesn't work.
Set a cookie - Open a page on every browser that sets a user cookie, which I can detect and subsequently restrict. This option is not feasible in the long run. Also, people keep deleting cookies and remembering each time to open up that page everytime isn't feasible.
Is there any other way I can block saving my own data in the database?