diff options
author | ignace nyamagana butera <nyamsprod@gmail.com> | 2016-12-15 13:09:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-15 13:09:47 +0100 |
commit | d2fb26505fae06d30204f0e9a272569392382283 (patch) | |
tree | b97ea0ac5773dc54ecf8aff54d27e866e5a40b3f /examples/extract.php | |
parent | 33447984f7a7038fefaa5a6177e8407b66bc85b4 (diff) | |
parent | 405f5210adcba71e60f547c90717646cbac54976 (diff) | |
download | csv-master.zip csv-master.tar.gz csv-master.tar.bz2 |
Merge pull request #198 from Samyoul/patch-1HEADorigin/masterorigin/HEADmaster
Minor spelling correction
Diffstat (limited to 'examples/extract.php')
-rwxr-xr-x | examples/extract.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/extract.php b/examples/extract.php index 61c768e..ec07f84 100755 --- a/examples/extract.php +++ b/examples/extract.php @@ -10,7 +10,7 @@ $inputCsv->setDelimiter(';'); //get the header $headers = $inputCsv->fetchOne(0); -//get at maximum 25 rows starting from the 801th row +//get at maximum 25 rows starting from the 801st row $res = $inputCsv->setOffset(800)->setLimit(25)->fetch(); ?> <!doctype html> |