Web Applications Stack Exchange is a question and answer site for power users of web applications. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

I have about 200 rows each with 7 columns in Google Spreadsheets which I am exporting to csv, so that I can separate columns by comma and use this data in PHP arrays. I get this

something, something, 242342, asdffds,
something, something, 242342, asdffds,
something, something, 242342, asdffds,

Is there any way I can put ' around data so that I get this?

'something', 'something', '242342', 'asdffds',
'something', 'something', '242342', 'asdffds',
'something', 'something', '242342', 'asdffds',
share|improve this question

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.