Top "Fputcsv" questions

fputcsv is a PHP function that formats a line (passed as a fields array) as CSV and writes it (terminated by a newline) to the specified file handle.

Create CSV from multidimensional array with fputcsv

I'm trying to get a multidimensional array into a csv file. data in the array is as such: Array ( [0] => …

php arrays string multidimensional-array fputcsv
Converting csv files data to an array using php str_getcsv function

I have string like which is created using fputcsv Date,Name,Hours 2013-01-02,"Test User",7:59 2013-01-03,"Test User",7:53 2013…

php arrays loops fgetcsv fputcsv
Adding BOM to CSV file using fputcsv

I have a simple CSV file being generated that includes foreign characters. I've noted that if I don't include a …

php excel csv byte-order-mark fputcsv
fputcsv in PHP will not write to file

I've have searched and searched and done extensive debugging and for the life of me cannot figure out why fputcsv …

php fputcsv
fputcsv - only one column

I want to save parts (and differently arranged) of my mysql database in a CSV file. For that I wrote …

php mysql arrays csv fputcsv
How to export a tab-separated txt file from php array without quotes

I've managed to save a tab-separated file for a product feed with the code below. However, the feed that I …

php tsv fputcsv
PHP fputcsv with UTF-8 Problem

I'm trying to allow my clients view some of the MySQL data in Excel. I have used PHP's fputcsv() function, …

php mysql utf-8 export-to-excel fputcsv
Add data to csv file in specific columns using PHP

I have a csv file which has 14 columns, and hundreds of rows. There is a header which is "sku","category","…

php database csv fputcsv
fputcsv doesn't write any data in a CSV file

In my web site I'm creating a table from the mysql data and then now I want to add a …

php csv fputcsv