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 have a string which contains csv data. Can I somehow offer that string for download as a csv file without saving it before?

Thanks

share|improve this question
Yes, you can do this. – Vlad Preda Feb 1 at 12:05
1  
You can find the solution here: stackoverflow.com/questions/217424/… – Juan de Parras Feb 1 at 12:07

closed as not a real question by Juhana, Aleksander Blomskøld, M42, CloudyMarble, Julius Feb 1 at 13:35

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted
header("Content-Disposition", "attachment;filename=myfilename.csv");
share|improve this answer
<?php
      header("Content-type: application/octet-stream");
      header("Content-Disposition: attachment; filename=\"my-data.csv\"");
      $data="col1, col start and end col2,col3, \n";
      $data .= "second line data";
      echo $data;
?>

Above code will display a window in visitor browser asking to save file in local computer or open by suitable application.

share|improve this answer

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