select * from user where id = array code example
Example: mysql where in array
-- SQL
SELECT * FROM table WHERE column IN('value1','value2','value3')
-- Javascript
$string="1,2,3,4,5";
$array=array_map('intval', explode(',', $string));
$array = implode("','",$array);
$query=mysqli_query($conn, "SELECT name FROM users WHERE id IN ('".$array."')");