diff options
-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> |