Put those ids in an array and look at this question: https://stackoverflow.com/questions/9618277/how-to-use-php-array-with-sql-in-operator
– catconJul 24 '19 at 04:56
1 Answers1
0
You can use IN to check in a list
UPDATE user SET point='$_POST[point]' WHERE id in (<list of ids>);