0% found this document useful (0 votes)
4 views

php_prac_7

Uploaded by

saeedarwatkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

php_prac_7

Uploaded by

saeedarwatkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

P

Practical No. 7
1) Write a php file to create a PDF.
<?php

require('fpdf.php');

$pdf=new FPDF();

$pdf->AddPage();

$pdf->SetFont('Arial','B',16);

$pdf->Cell(40,10,'Hello
>Cell(40,10,'Hello World! Welcome to PHP Programming...');

$pdf->Output();

?>

Output:
2) Write php file to create a pdf and use various graphics function.
<?php

require('fpdf.php');

$pdf = new FPDF();

$pdf->AddPage();

$pdf->Line(10, 20, 100, 20);

$pdf->Rect(10, 30, 50, 20);

$pdf->SetFillColor(200, 200, 0);

$pdf->Rect(70, 30, 50, 20, 'F');

$pdf->SetFont('Arial', 'B', 14);

$pdf->Text(10,
>Text(10, 70, 'Simple Graphics in PDF');

$pdf->Output();

?>

Output:

You might also like