summaryrefslogtreecommitdiffstats
path: root/examples/extract.php
diff options
context:
space:
mode:
authorignace nyamagana butera <nyamsprod@gmail.com>2016-12-15 13:09:47 +0100
committerGitHub <noreply@github.com>2016-12-15 13:09:47 +0100
commitd2fb26505fae06d30204f0e9a272569392382283 (patch)
treeb97ea0ac5773dc54ecf8aff54d27e866e5a40b3f /examples/extract.php
parent33447984f7a7038fefaa5a6177e8407b66bc85b4 (diff)
parent405f5210adcba71e60f547c90717646cbac54976 (diff)
downloadcsv-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-xexamples/extract.php2
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>