There is a cycle where the records from the database are output. In the cycle there is a form with the "OK" button
When you click on it, the database is recorded. (It takes 60 of the total number of points from the user with the nickname indicated on the left side of the block) Is it possible to implement it like that with one button? In order to allow at the very bottom or at the beginning there was one “OK” button when clicked on which all the entries were recorded where necessary. (Each user has his / her points taken off)
UPDATE users SET score = score - 60 WHERE username IN ('user1', 'user2', 'user3')- Yaant