I am curious if there is a way to bind array of parameters at once?
In simple words, something like this:
$sql = "SELECT * FROM table WHERE id IN (?)";
$stmt = $db->prepare($sql);
$stmt->bind_param("<array>", $array_of_ids);
$stmt->execute();
Thoughts?