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',