| 
<?php
require 'object/table/tableInfo.php';
 require 'object/table/tablePure.php';
 
 //create new object of table
 $tbl = new tablePure();
 
 //property of table
 //set title of table
 $tbl->SetTitleTable('Hanya untuk latihan saja');
 //set titleSizeTable;
 $tbl->SetTitleSizeTable('+2');
 //set titleColorTable;
 $tbl->SetTitleColorTable('#FF00FF');
 //set alignTable;
 $tbl->SetAlignTable('center');
 //set colorBgTable;
 $tbl->SetColorBgTable('#CCFFFF');
 //set widthTable;
 $tbl->SetWidthTable('70%');
 //set heighTable;
 $tbl->SetHeighTable('80%');
 //set borderWidthTable;
 $tbl->SetBorderWidthTable('1');
 //set borderColorTable;
 $tbl->SetBorderColorTable('#000000');
 //set cellPaddingTable;
 $tbl->SetCellPaddingTable('2');
 //set cellSpacingTable;
 $tbl->SetCellSpacingTable('0');
 
 //property of Cols
 //set titleCols;
 $tbl->SetTitleCols(array('Nama','Jenis Kelamin','Alamat','Asal'));
 //set colorTitleCols;
 $tbl->SetColorTitleCols('#99CC00');
 //set widthCols;
 $tbl->SetWidthCols(array('20%','15%','40%','25%'));
 //set numCols;
 $tbl->SetNumCols('4');
 //set numRows;
 $tbl->SetNumRows('6');
 //set dataCols;
 $tbl->SetDataCols(
 array(
 array('wahyu','laki-laki','jebres','kediri'),
 array('cahyo','laki-laki','wonogiri','kalimantan'),
 array('arip','laki-laki','mojosongo','solo'),
 array('nana','perempuan','solo','bali'),
 array('ana','perempuan','solo','cirebon'),
 array('fitriya','perempuan','boyolali','solo')
 )
 );
 
 //create instant
 $isi=$tbl->CreateOfTable();
 
 //output
 print $isi;
 
 ?>
 
 |