There is a cycle where the records from the database are output. In the cycle there is a form with the "OK" button
enter image description here

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)

  • The picture does not help here, show your code, have you tried to do something? - Arsen
  • The answer to your question - You can. - u_mulder
  • Can you tell me how? @u_mulder - Win Rate
  • Collect all the entries in this table, transfer to their server, make as many requests on the server as there are IDs. - u_mulder 4:03
  • UPDATE users SET score = score - 60 WHERE username IN ('user1', 'user2', 'user3') - Yaant

0