Commit 1ecb5df1 authored by Alexander Butenko's avatar Alexander Butenko

Merge pull request #319 from rjpounder/patch-1

Update readme.md
parents 70a3686c fbd30933
......@@ -338,7 +338,7 @@ Or raw condition with variables:
$db->where ("(id = ? or id = ?)", Array(6,2));
$db->where ("login","mike")
$res = $db->get ("users");
// Gives: SELECT * FROM users WHERE (id = 2 or id = 2) and login='mike';
// Gives: SELECT * FROM users WHERE (id = 6 or id = 2) and login='mike';
```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment