I just add code because it will say everything. And yes, it does not work and I dont know why :(
$array = array('One', 'Two', 'Three');
$string = "'" . implode("', '", $array) . "'";
$query = "SELECT * FROM $table WHERE name IN (" . $string . ")";
$make = $this->conn->prepare($query);
$make->execute();
$result = $make->fetchAll();
It returns empty array. Thank you for your help.