summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/README.md b/README.md
index beb3eaa..69f9e9a 100644
--- a/README.md
+++ b/README.md
@@ -68,6 +68,9 @@ $person = $db->query("SELECT * FROM Persons WHERE firstname = :firstname AND
// 3. Or just give the parameters to the method
$person = $db->query("SELECT * FROM Persons WHERE firstname = :firstname",array("firstname"=>"John","id"=>"1"));
```
+
+More about SQL injection prevention : http://indieteq.com/index/readmore/how-to-prevent-sql-injection-in-php
+
#### Fetching Row:
This method always returns only 1 row.
```php