我试图创建一个使用FPDF细胞/多节自定义表格。
我的第一个细胞是MultiCell
有两行文字。 下一个单元格应然后就放在它旁边。
问题 :无论我做什么,下一个单元格,它总是在页面上,而不是放在旁边的第一小区的下一行-和它的驾驶我疯了。
这里是我的代码:
require_once 'config.php';
require 'fpdf.php';
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','',10);
$pdf->MultiCell(150,10,'Certificate of foreign Currency usage in respect of materials and components in terms of the notes to rebate item ',1);
$pdf->SetFont('Arial','',10);
$pdf->MultiCell(40,10,'DA190',1);
$pdf->Output();
包含文本“DA190”细胞应放在旁边的先前的小区,但是被定位在先前小区下方。