Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use the following code to get data from a form and save it as csv.

$cvsData = $name . "," . $address . "\n";

$fp = fopen("file.csv", "a");

if ($fp) {
    fwrite($fp, $cvsData); // Write information to the file
    fclose($fp); // Close the file
}

When someone enters a comma or line break in address field it breaks the formatting. So how can i escape it so that the whole address stays in the same field ?

share|improve this question
1  
start using PHP's built-in fputcsv() functions for writing csv files rather than building your own $cvsData line... then, at least, you don't need to worry about commas in your data – Mark Baker Feb 10 '12 at 7:28

2 Answers

up vote 3 down vote accepted

Put each data item inside quotation marks. A pair of quotation marks inside a quoted value signifies a single quotation mark. e.g.

"Daniel Norton","Congress Ave.
Austin (""Keeping it weird""), TX"

Referring to your example:

$data = str_replace('"','""',$data);
$address = str_replace('"','""',$address);
$cvsData = "\"$data\",\"$address\"\n";

Better still, just use the PHP function fputcsv.

fputcsv($fp,array($data,$address));
share|improve this answer
Should i add quotes for each variable. It gives me error... – Ajay Feb 10 '12 at 4:57
I have added more detail, using your example. – danorton Feb 10 '12 at 5:18

CSV is totally dependent on the software used to read it.

Have a look at http://www.csvreader.com/csv_format.php for some details on how certain programs expect CSV data.

I have created a CSV class that can handle most of these situations. You might want to have a look at it.

https://gist.github.com/1786683

And to answer your question, using that class you could

$csv = CSV::newExcel();
$cvsData = $csv->row($name, $address);
// etc...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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