setDelimiter(';'); //get the header $headers = $inputCsv->fetchOne(0); //get at maximum 25 rows starting from the 801st row $res = $inputCsv->setOffset(800)->setLimit(25)->fetch(); ?>
=implode(' | '.PHP_EOL.'', $headers), ' | ', PHP_EOL; ?>
---|---|
=implode(' | '.PHP_EOL.'', $row), ' | ', PHP_EOL; ?>