i'm trying to use data (user id's) from an array in a query. I want to retrieve data of the user where the id's in the array match id's in the database.
This is my array:
$ids = array("1234","1235","1250","3586");
how can i transform or use this array so i can use it to check every value if it's exists in the database. If it's exists, it has to return the users name and birthday.