我如何使用MySQL和PHP每天增加一个值?

So I'm wondering how I can increase the value for the user by 10 daily or each time they log in?

I'm relatively new to PHP and have only made a login and signup system and need help learning.

You need a new column for each user in the database, this will store the value. You also need to store the last time they logged in (so you'll need a column for that). Each time they log in, in the login PHP code check to see if the current date is at least one day ahead of the last time they logged in. If it is, increase the value by ten; otherwise, leave it.