Commit fbd30933 authored by rjpounder's avatar rjpounder

Update readme.md

parent 70a3686c
...@@ -338,7 +338,7 @@ Or raw condition with variables: ...@@ -338,7 +338,7 @@ Or raw condition with variables:
$db->where ("(id = ? or id = ?)", Array(6,2)); $db->where ("(id = ? or id = ?)", Array(6,2));
$db->where ("login","mike") $db->where ("login","mike")
$res = $db->get ("users"); $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