このライブラリ FPDF を使用して非常に単純な PDF を作成していましたが、現在は「結果ページ」を作成しようとしています。
私はすでにFPDFでそれを取得しており、セルを作成しました(それが最善の方法であるかどうかはわかりません)。コードは次のようになります(現時点では、結果を手動で追加しました。 ):
//SimpleTable
function SimpleTable() {
$this->Cell(280,15,"Inscription Number: 1",0);
$this->Cell(265,15,"Date: 28/03/2008",0);
$this->Ln();
$this->Cell(265,15,"Name and Surname: Name Surname ",0);
$this->Cell(265,15,"",0);
$this->Ln();
$this->Cell(280,15,"Address: Address",0);
$this->Cell(265,15,"",0);
$this->Ln();
$this->Cell(280,15,"Zip Code: Zip Code",0);
$this->Cell(280,15,"City: City",0);
$this->Ln();
$this->Cell(280,15,"Year of birth: Birthday",0);
$this->Cell(280,15,"Age: Age",0);
$this->Ln();
$this->Cell(280,15,"VIP: No - First Time: Yes",0);
$this->Cell(280,15,"School: My school",0);
}
すべての結果を 1 つにまとめる方法を教えていただければ幸いです。私にはそれができず、何も見つかりませんでした。
いつもありがとうございます。