Skip to content

Commit 9f1c5ad

Browse files
committed
Update README.md
1 parent ae40ec2 commit 9f1c5ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ $result = $db->selecting('profile', 'phone',
151151
);
152152

153153
foreach ($result as $row) {
154-
echo $row->phone);
154+
echo $row->phone;
155155
}
156156

157157
$result = $db->selecting('profile', 'name, email',
@@ -173,7 +173,7 @@ $result = $db->selecting('profile', 'name, email',
173173
);
174174

175175
foreach ($result as $row) {
176-
echo $row->name.' '.$row->email);
176+
echo $row->name.' '.$row->email;
177177
}
178178
```
179179

@@ -186,7 +186,7 @@ $db->query_prepared('SELECT name, email FROM profile WHERE phone = ? OR id != ?'
186186
$result = $db->queryResult(); // the last query that has results are stored in `last_result` protected property
187187

188188
foreach ($result as $row) {
189-
echo $row->name.' '.$row->email);
189+
echo $row->name.' '.$row->email;
190190
}
191191
```
192192

0 commit comments

Comments
 (0)