Hello! I have a website with membership and the question is that I want to implement a balance system where users can earn money. Is the balance just an extra integer in the database table for their earnings or do I have to do or implement something to my website?
No need to increase the size of DB. Make a function to calculate the balance and then print the value using that function on any place on your website.
Ok, but every user has his own balance. Do you mean that the balance is calculated through a function and the calculation is based on how many clicks they've generated? If so than thanks for the answer!