1. Go to this page and download the library: Download lozemc/simple-google-sheets library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lozemc / simple-google-sheets example snippets
use Lozemc\GoogleSheet;
// Replace 'your_table_id' and 'path/to/your/credentials-config.json' with actual values
$table_id = 'your_table_id';
$credentials = 'path/to/your/credentials-config.json';
$table = new GoogleSheet($table_id, $credentials);
use Lozemc\GoogleSheet;
$table_id = '1gncMRlsonFj2YzYw79QnfVA4Go5UcYkmfgG1T7Vb5Q';
$credentials = __DIR__ . '/credentials-config.json';
$table = new GoogleSheet($table_id, $credentials);
// Set the sheet name if not provided during initialization
$table->set_sheet('Sheet1');
// Append new rows
$table->append([
['Lisa', 'Anderson'],
['Jane', 'Jones'],
]);
// Get all rows
$rows = $table->get_rows();
// Display the retrieved rows
print_r($rows);
// Get rows from a specific range in another sheet
$rows = $table->set_sheet('Sheet2')->get_rows('B10:C20');
print_r($rows);
// Update data in a specific range
$table->update([['New value']], 'B10');
$row = $table->get_rows('B10');
print_r($row);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.