We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f3c14d commit 42499f7Copy full SHA for 42499f7
readme.md
@@ -101,12 +101,11 @@ $db->where('title', string);
101
$results = $db->get('tableName');
102
print_r($results); // contains array of returned rows
103
104
-Optionaly you can use method chaining to call where multiple times without calling referancing your object over an over:
+Optionally you can use method chaining to call where multiple times without referancing your object over an over:
105
$results = $db
106
->where('id', 1)
107
->where('title', 'MyTitle')
108
->get('tableName');
109
-print_r($results); // contains array of returned rows
110
111
</code>
112
</pre>
0 commit comments