From the PHP Manual :
You cannot bind multiple values to a single named parameter in, for example, the IN() clause of an SQL statement.
But can you use multiple values using question mark parameter markers? Or do you have to prepare()
a new statement every time the number of values changes?
SELECT * FROM `table` WHERE `column` IN(?)
If this is allowed how do you make it work?
EDIT: The two previous questions indicated were both about named variables, which the manual says can't be bound to multiple parameters. I was asking about question mark (anonymous) variables.