chadanuk/php_csv_browser

There is no license information available for the latest version (dev-master) of this package.

dev-master 2013-08-06 10:54 UTC

This package is auto-updated.

Last update: 2024-05-08 05:18:38 UTC


README

Get specific information from any CSV

Retrieves a row of data based on a field/value combo.

After your file is upload initialise the CSV browser by parsing the file name to the constructor.

	$c = new CSV($filename);

Then use the finditem method to retrieve the row of data you want based on a field and value

	$data = $c->finditem('name', 'Dave');