views:

80

answers:

2

Is it possible for me to access a Google Docs spreadsheet (possibly as a CSV file?) and build that into a PHP array?

A: 

fgetcsv() will allow you to parse a CSV file into an array. So if you can export that spreadsheet as a CSV file that should do the trick.

John Conde
+1  A: 

Google provides a PHP API for spreadsheets.

snorpey