我正在使用FPDF选项,我对PHP和FPDF也很新。我的下面的代码是将文本写入PDF文件,但它是重叠的。相反,如何在每行中打印文本,我还需要在发布的数据之前添加标题。
我的代码是
$pdf->Cell(40, 10, $_POST['textfield2']);
$pdf->Cell(40, 10, $_POST['textfield3']);
$pdf->Cell(40, 10, $_POST['textfield4']);
$pdf->Cell(40, 10, $_POST['textfield5']);
$pdf->Cell(40, 10, $_POST['textfield6']);
$pdf->Cell(40, 10, $_POST['textfield7']);
$pdf->Cell(40, 10, $_POST['textfield8']);
$pdf->Cell(40, 10, $_POST['textfield9']);
$pdf->Cell(40, 10, $_POST['textfield10']);
当前输出:Test Test Test Test Test
我需要输出
First name : Test
Last name : Test
Profession : Test
以这种方式..
我怎样才能做到这一点?