14 lines
421 B
PHP
14 lines
421 B
PHP
<?php
|
|
$pdf->SetFont('','B','8');
|
|
$pdf->SetFont('','','8');
|
|
$sizerec=47.5;
|
|
$pdf->Cell(100,6,$certuebpdf,1,0,'L');
|
|
$pdf->Cell(90,6,$trfData['previousreportnumber'],1,0,'L',TRUE);
|
|
$pdf->Ln();
|
|
$pdf->Cell(100,6,$extendtopdf,1,0,'L');
|
|
$pdf->Cell(90,6,$trfData['toextend'],1,0,'L',TRUE);
|
|
$pdf->Ln();
|
|
$pdf->Cell(100,6,$surveillancetopdf,1,0,'L');
|
|
$pdf->Cell(90,6,$trfData['surveillanceselectoption'],1,0,'L',TRUE);
|
|
$pdf->Ln();
|
|
?>
|