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 d52480d commit 28653fcCopy full SHA for 28653fc
readme.md
@@ -69,3 +69,13 @@ $results = $Db->query('SELECT * from posts');
69
print_r($results); // contains array of returned rows
70
</code>
71
</pre>
72
+
73
+<h3> Where Method </h3>
74
+<p>This method allows you to specify the parameters of the query. For now, it only accepts one key => value pair. </p>
75
+<pre>
76
+<code>
77
+$Db->where('id', int);
78
+$results = $Db->get('tableName');
79
+print_r($results); // contains array of returned rows
80
+</code>
81
+</pre>
0 commit comments