Reply to Re: dumping a array into PDO::db using place holders.
Posted by giblfiz on 01/07/08 18:38
> $stmnt->bindParam($i, $value);
I'm not 100% about this, but doesn't binddParam want a data type
specified, something like:
$stmnt->bindParam($i, $value, PDO::PARAM_STR, strlen($value));
Not my usual DB library, so this is just a shot in the dark.