I am trying execute this query which returns false with message that "INSERT has more target columns than expressions" which I understand, but is there a way to use array or string with values that I want to insert ? I am using postgres with PDO
$params = '"param1", "param2", "param3", "param4", "param5"';
$query = $conn->query = 'INSERT INTO myTable (
"value1",
"value2",
"value3",
"value4",
"value5") VALUES(:params)';
$query->execute(array('params' => $params));