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 8f578b5 commit 7faeaf5Copy full SHA for 7faeaf5
readme.md
@@ -78,6 +78,36 @@ And voila:
78
+----+---------------+
79
```
80
81
+To get the results into a usable array, just use `$oMySQL->Select('admin')` ...for example, doing the following:
82
+
83
+`print_r($oMySQL->Select('admin'));`
84
85
+will yield:
86
87
+```
88
+Array
89
+(
90
+ [0] => Array
91
+ (
92
+ [id] => 1
93
+ [username] => superuser
94
+ )
95
96
+ [1] => Array
97
98
+ [id] => 2
99
+ [username] => a1phanumeric
100
101
102
+ [2] => Array
103
104
+ [id] => 3
105
+ [username] => Thrackhamator
106
107
108
+)
109
110
111
### License
112
113
This program is free software: you can redistribute it and/or modify
0 commit comments