We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5159467 commit f352384Copy full SHA for f352384
1 file changed
readme.md
@@ -446,6 +446,11 @@ $db->where ('id', 1);
446
$db->where ('login', 'admin');
447
$results = $db->get ('users');
448
// Gives: SELECT * FROM users WHERE id=1 AND login='admin';
449
+
450
+// Or you can also use Chain Loaders for above query
451
+$results = $db->where ('id', 1)
452
+ ->where ('login', 'admin')
453
+ ->get('users');
454
```
455
456
```php
0 commit comments