Skip to content

Commit

Permalink
Fix typo (stringss > strings) (#698)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlacombe authored and dg committed May 3, 2018
1 parent c9694ae commit 58ee0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion en/database-core.texy
Expand Up @@ -72,7 +72,7 @@ $database->query('SELECT * FROM users WHERE id IN (?)', $ids); // $ids is array
\--

/--div .[warning]
WARNING, never concatenate stringss to avoid [SQL injection vulnerability |https://en.wikipedia.org/wiki/SQL_injection]!
WARNING, never concatenate strings to avoid [SQL injection vulnerability |https://en.wikipedia.org/wiki/SQL_injection]!
/--
$db->query('SELECT * FROM users WHERE name = ' . $name); // WRONG!!!
\--
Expand Down

0 comments on commit 58ee0f5

Please sign in to comment.