We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a69453f commit 6b4c127Copy full SHA for 6b4c127
docs/Statement/INSERT.md
@@ -42,7 +42,7 @@ Returns the primary key for the inserted record
42
// INSERT INTO users ( id , usr , pwd ) VALUES ( ? , ? , ? )
43
$insertStatement = $pdo->insert(array(
44
"id" => 1234,
45
- "usr" => "your_username"",
+ "usr" => "your_username",
46
"pwd" => "your_password"
47
))
48
->into("users");
0 commit comments