Opret en matrix med lige så mange ?
som du har værdier, og smid det ind i forespørgslen.
$placeholders = array_fill(0, count($thingArray), '?');
$sql = "SELECT thing FROM things WHERE thing_uid IN (" . implode(',', $placeholders) . ")";
Opret en matrix med lige så mange ?
som du har værdier, og smid det ind i forespørgslen.
$placeholders = array_fill(0, count($thingArray), '?');
$sql = "SELECT thing FROM things WHERE thing_uid IN (" . implode(',', $placeholders) . ")";