I was looking at the documentation of that framework for PHP and I can not put two tables together in the same row. Could it be?
The documentation is in this Link
<?php
include_once '../src/Cezpdf.php';
$pdf = new CezPDF("a4");
$pdf->selectFont('Helvetica');
$data = array(
array('num'=>1,'name'=>'gandalf','type'=>'wizard')
,array('num'=>2,'name'=>'bilbo','type'=>'hobbit','url'=>'asd')
,array('num'=>3,'name'=>'frodo','type'=>'hobbit')
,array('num'=>4,'name'=>'saruman','type'=>'bad dude','url'=>'asdd')
,array('num'=>5,'name'=>'sauron','type'=>'really bad dude')
);
$cols = array('num'=>'No', 'type'=>'Type','name'=>'<i>Alias</i>');
$coloptions = array('num'=> array('justification'=>'right'), 'name'=> array('justification'=>'left'),'type'=> array('justification'=>'center'));
$pdf->ezText("<b>GRIDLINE</b>", 12);
$pdf->ezText("<b>using 'showLines' option - DEPRECATED</b>\n", 10);
$pdf->ezText("\nDefault: showLines = 1\n", 10);
//esta es la primera tabla
$pdf->ezTable($data, $cols, "", array('xPos' => 'coordinate','xOrientation' => 'right'));
//esta es la segunda
$pdf->ezTable($data, $cols, "", array('xPos' => 'right','xOrientation' => 'left'));
$pdf->ezStream();
?>