According to http://us2.php.net/manual/en/mysqli-stmt.bind-param.php, the different types are:
i corresponding variable has type integer
d corresponding variable has type double
s corresponding variable has type string
b corresponding variable is a blob and will be sent in packets
Ancak, nasıl bu işleyebilir:
->prepare("SELECT blabla FROM foo WHERE id IN (?)")
Nerede? kimlikleri bir liste olur. Bir veya daha fazla öğe olabilir:
$ids = "3,4,78";
->bind_param('s',$ids);
Bu mümkün mü?
Ben bir döngü içinde idam olacak çünkü hazır deyimleri kullanmak istiyorum.