You are on page 1of 1

<?

php
ob_start();

//include classes

include_once('opentbs/tbs_class.php');
include_once('opentbs/tbs_plugin_opentbs.php');

$TBS = new clsTinyButStrong; // new instance of TBS


$TBS ->Plugin(TBS_INSTALL,OPENTBS_PLUGIN); // load the OpenTBS plugin

//------------------------
//Siapkan data
//------------------------

$data[] = array();
$data[] = array('OrderID' => '1', 'ProductID' => 'S', 'UnitPrice' => '10');
$data[] = array('OrderID' => '1', 'ProductID' => 'R', 'UnitPrice' => '15');
$data[] = array('OrderID' => '1', 'ProductID' => 'W', 'UnitPrice' => '8');

$datawaktu = array('tanggal' => '20 Maret 2021');

$template = 'template.xlsx';
$TBS->LoadTemplate($template, OPENTBS_ALREADY_UTF8);

//----------------------------------------------------
// Merge data in the body of the document
//----------------------------------------------------

$TBS->MergeBlock('data' $data);
$TBS->MergeBlock('waktu' $datawaktu);

//------------------------
// Output the result
//------------------------

$TBS->Show(OPENTBS_DOWNLOAD, 'hasil_contoh1.xlsx');
exit();

<?php

You might also like