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 bd6ce96 commit d652113Copy full SHA for d652113
README.md
@@ -1,2 +1,17 @@
1
# PHP-Library
2
Some useful php libraries for easing code :)
3
+
4
+## Working with DB (PDO)
5
6
+### Instantiating Object and setting table
7
8
+```php
9
+$db = new DB();
10
+$db->table('tablename');
11
12
+``
13
+## OR Do it directly (DID)
14
15
+// Fetching results
16
+DB::table('tablename')->get(); // will fetch every result from table
17
+```
0 commit comments