Skip to content

Commit f8136a6

Browse files
authored
Update README.md
1 parent a23a370 commit f8136a6

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

README.md

+4-10
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@ A database class which uses the PDO extension.
88

99
If you have any issue please open isseu to fix it.
1010

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-
1811

1912
### install via composer
2013
```json
@@ -65,9 +58,9 @@ If you have any issue please open isseu to fix it.
6558

6659
print_r($allData);
6760
```
68-
- select `id`, `name`, `email` fro all users from `users` table
61+
- select `id`, `name`, `email` for all users from `users` table
6962
```php
70-
$coustomFields = $db->table('users')->select(['id', 'name', 'email']);
63+
$coustomFields = $db->table('users')->select(['id', 'name', 'email'])->select();
7164

7265
print_r($coustomFields);
7366
```
@@ -249,7 +242,8 @@ see (link() method to know how to generate navigation automatically)
249242
echo $db->link();
250243
```
251244

252-
### dataView :
245+
246+
## dataView :
253247
view query results in table
254248
we need to create a simple table to view results of query
255249

0 commit comments

Comments
 (0)