0
我剛剛開始使用FPDF,但我仍然不確定如何傳遞自己的變量。將PHP變量傳遞給FPDF的正確方法是什麼?
我想這樣做
的index.php:
...
//set name variable
$name = $_POST["name"]
//embed the pdf
<embed width="100%" height="100%" name="plugin" src="my-fpdf.php" type="application/pdf">
....
我-fpdf.php:
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$txt = "Hello ".$name."!" //access the variable
$pdf->Cell(40,10,$txt);
$pdf->Output();
?>
是否有關於如何做到這一點的最佳做法?