Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A query to the following URL should list you all worksheets of a specific spreadsheet:</p> <pre><code>http://spreadsheets.google.com/feeds/worksheets/**spreadsheetKey**/private/full </code></pre> <p>To install and use Zend_Gdata, do the following:</p> <p>Download the last package (<a href="http://framework.zend.com/releases/ZendGdata-1.10.7/ZendGdata-1.10.7.tar.gz" rel="nofollow noreferrer">http://framework.zend.com/releases/ZendGdata-1.10.7/ZendGdata-1.10.7.tar.gz</a>) from the Zend Framework website. Now let's assume the following directors structure:</p> <ul> <li>/index.php (your main file)</li> <li>/library/Zend (extract the library/Zend folder in here)</li> </ul> <p>Now in your index.php, do the following:</p> <pre><code>set_include_path( dirname(__FILE__) . '/library' . PATH_SEPARATOR . get_include_path() ); require_once 'Zend/Loader.php'; Zend_Loader::registerAutoload(); </code></pre> <p>Now you can simply follow the manual (<a href="http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html" rel="nofollow noreferrer">http://framework.zend.com/manual/en/zend.gdata.spreadsheets.html</a>). Interesting for you may be the topics "Get a List of Spreadsheets" for creating the service instance and "Get a List of Worksheets" to fetch all worksheets of a specific spreadsheet.</p> <p>Update:</p> <p>It looks like the Zend_Gdata package is not properly packaged. I will note that to get the package fixed. In the meantime, I suggest you to download the complete Zend Framework package. To use the autoloader in 1.8 correctly, do the following instead:</p> <pre><code>require_once 'Zend/Loader/Autoloader.php'; Zend_Loader_Autoloader::getInstance(); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload