how can i make the horizontal pdf file
hi guys how can i make a harizontal pdf file by using php.i created for the register form(name ,email, stre开发者_运维百科et,city country) can any one say some ideas.
thanks in adv
For that purpose you need to include a library of php after downloading it FPDF And this is just an example to use fpdf library.
<?php
require('fpdf.php');
$pdf=new FPDF('l','mm','A4');
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'NAME');
$pdf->Cell(40,30,'EMAIL');
$pdf->Cell(40,50,'STREET');
$pdf->Cell(40,70,'CITY');
$pdf->Cell(40,100,'COUNTRY');
$pdf->Output();
?>
Take a look at FPDF to generate the PDF, or for converting HTML straight into a PDF - wkhtmltopdf.
精彩评论