Hi. My name is Javid. At first I want to thank you for such a good pdf builder. My problem with tcpdf is this: I use 2 cells: one is on the right of the page, another, is on the left of the page. The problem is that if text on the right cell goes from 1st page to the next page it also affects the left cell. How can I solve it ?
//the left cell
$html1 = '
<p>'.$about['skills'].'</p><br/>
';
$tagvs = array('p' => array(0 => array('h' => 0, 'n' => 0), 1 => array('h' => 0, 'n'
=> 0)));
$pdf->setHtmlVSpace($tagvs);
$pdf->setCellHeightRatio(1.25);
$pdf->writeHTMLCell(51, '', 8, '', $html, 0, 1, 1, true, 'J', true);
////////
// The right cell
$html2 = '
<p>'.$about['comp'].'</p><br/>
';
$tagvs = array('p' => array(0 => array('h' => 0, 'n' => 0), 1 => array('h' => 0, 'n'
=> 0)));
$pdf->setHtmlVSpace($tagvs);
$pdf->setCellHeightRatio(1.25);
$pdf->writeHTMLCell(135, '', 67, '', $html2, 0, 1, 1, true, 'J', true);
I have attached an example
is here anyone ?