vote up 0 vote down star

EDIT: Copied wrong part of function into this question, below is the appropriate one.

$values = mysql_query("SELECT lname, fname, email, dtelephone, etelephone, contactwhen, thursday, 
friday, saturday, sunday, monday, comments FROM volunteers_2009 WHERE venue_id = $venue_id");

while ($rowr = mysql_fetch_row($values)) {
    for ($j=0;$j<$i;$j++) {
    	$csv_output .= $rowr[$j].", ";
    }
    $csv_output .= "\n";
}

I have comments that may have a comma in it, and even double quotes, when it has a comma in the comment field, it throws off the entire csv file.

The code below is how it loads the data into the csv string, to put into a csv file.

How do I get it to export the comments field data properly?

flag

69% accept rate

5 Answers

vote up 5 vote down

Check out fputcsv(). Think there are some useful comments there aswell.

link|flag
vote up 1 vote down

Enclose the field in double quotes. Double up any embedded double quotes.

ordinary field,"field with , in it","field with double double quote ("""")"

Note that this is very, very close to the question Dealing with commas in a CSV file

link|flag
Well, this one is more language specific (I think the chosen answer for that question was written in C or C++?). sshow has provided a very good php-specific solution here that wasn't given in the other question. – Calvin Apr 21 at 1:00
That's why I said "close to the other question" and not "close - because exact duplicate" (and it is funny, but those two words 'close' are pronounced differently in my dialect of English; the first has a sharp sibilant s; the second a voiced z sound). – Jonathan Leffler Apr 21 at 1:06
Also, the answer to the x-ref'd question gives the algorithmic information needed to produce the code to resolve this one (or to assess the quality of the output from proposed solutions). – Jonathan Leffler Apr 21 at 1:08
vote up 1 vote down

Umn, why not just use the built-in mySQL command? If I missed something, please ignore, but I think this is the fastest route:

http://www.netreveal.com/ddalton/2006/08/how_to_export_mysql_to_csv.html

Website basically suggests:

SELECT <fields or *> INTO OUTFILE '/tmp/result.text'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM <table> WHERE <condition>
link|flag
vote up 0 vote down

You could use a different delimiter like "|" or "@" or some other character that is not likely to appear in the data.

Most csv software has the ability to read in a "csv" file that uses something other than a comma as a delimiter.

link|flag
@ might not be a good example, since it will be in the email address... but that's just an example. – Andy White Apr 21 at 0:50
vote up 0 vote down

Edit: My bad, I just tested that and it doesn't work--not in Excel at least.

You could replace the commas with something else, however:

$field = str_replace(',','#COMMA#',$row['Field']);
$csv_output .= $field.', ';
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.