I don't understand the length option in a PDO PARAM_* statement.
Does the length indicate an amount of required characters, or is it a max?
Example:
$sth->bindParam(2, $color, PDO::PARAM_STR, 12);
Does this require 12 characters, or is this limiting it to 12 characters? Or, am I completely misunderstanding what this is doing?