File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,6 @@ A database class which uses the PDO extension.
8
8
9
9
If you have any issue please open isseu to fix it.
10
10
11
- * To Arabic latst version go to : http:/www.phptricks.org/PDO-class-v-2-xp : للشرح باللغة العربية للاصدار الحالي توجه الى
12
-
13
-
14
- * To Arabic v-2 go to : http://www.phptricks.org/PDO-class-v-2 : للشرح باللغة العربية للاصدار 2 توجه الى
15
-
16
- * To Arabic v-1 go to : http://www.phptricks.org/PDO-class : للشرح بالغة العربية للاصدار 1 توجه الى
17
-
18
11
19
12
### install via composer
20
13
``` json
@@ -65,9 +58,9 @@ If you have any issue please open isseu to fix it.
65
58
66
59
print_r($allData);
67
60
```
68
- - select `id`, `name`, `email` fro all users from `users` table
61
+ - select `id`, `name`, `email` for all users from `users` table
69
62
```php
70
- $coustomFields = $db->table('users')->select(['id', 'name', 'email']);
63
+ $coustomFields = $db->table('users')->select(['id', 'name', 'email'])->select() ;
71
64
72
65
print_r($coustomFields);
73
66
```
@@ -249,7 +242,8 @@ see (link() method to know how to generate navigation automatically)
249
242
echo $db->link();
250
243
```
251
244
252
- ### dataView :
245
+
246
+ ## dataView :
253
247
view query results in table
254
248
we need to create a simple table to view results of query
255
249
You can’t perform that action at this time.
0 commit comments