I am using cezPDF library in CodeIgniter 2
But it seems it can’t print the table or ezTable isn’t working properly
Anyone faced this before? or any solution on that?
take a look at my code here:
$db_data [] = array ('name' => 'x' );
$db_data [] = array ('name' => 'y' );
$db_data [] = array ('name' => 'z' );
$col_names = array ('name' => 'col' );
$this->cezpdf->ezTable ( $db_data, $col_names, '', array ('width' => 180, 'xPos' => 140 ) );
You are forgetting to write this instruction
By the way this is a working example