php-csv icon indicating copy to clipboard operation
php-csv copied to clipboard

A PHP library for working w/ CSV files.

Results 3 php-csv issues
Sort by recently updated
recently updated
newest added

Fist off all, great work done! There's a problem with special characters, when the to_download function gets called, it used to show special characters without their encoding. The solution to...

$csvClass = new CSV; $csvClass = CSV::from_file('public/uploads/'.$filename); $csvClass->to_database('csv', $table_already_exists = false, $clear_existing_records = false); SQLSTATE[42000]: Syntax error or access violation: 1166 Incorrect column name '' SQL: CREATE TABLE `csv` (`VARCHAR(200)...