how to create the pdf file
how could be create the Pdf file by using php. i want a pdf file for the one page no need for number of page and e开发者_开发百科very information should .is there any way for creating the one page
Aside from the already mentioned FPDF, there is also TCPDF. Have a look at their examples.
I warmly recommend the Fpdf class, I have used it before and it is really simple to use, and it comes with some easy to understand tutorials.
Creating a simple page is as simple as
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
(taken from it's first tutorial)
精彩评论