Creates a SpreadSheetCell object that allows you to apply available API methods to the specified cell.
<?php
require_once("api.php");
require_once("config.php");
$res = new PDO("mysql:dbname=$db_name;host=$db_host", $db_user, $db_pass);
$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
?>
Note, you can also get a SpreadSheetCell object by calling the getCell method of the SpreadSheet class.
Back to top