<?php
require("fpdf/fpdf.php");
$pdf=new FPDF("P","in");
$pdf->AddPage();

// draw a rectangle that will be the shadow
$pdf->SetLineWidth(.00);
$pdf->SetFillColor(128);
$pdf->Rect(.9,.6,3,2,"F");

// draw a rectange that will hold the student record
$pdf->SetLineWidth(.02);
$pdf->SetFillColor(255);
$pdf->Rect(.8,.5,3,2,"DF");

$pdf->setFont('Times','B',14);
$pdf->Text(1.0,1.0,"Student Record for Joe Dohn");
$pdf->setFont('Helvetica','',12);
$y=1.5;
$pdf->Text(1.0,$y,"Name:");
$pdf->Text(2.0,$y,"Joe Dohn");
$y+=.25;
$pdf->Text(1.0,$y,"ID:");
$pdf->Text(2.0,$y,"66012334");
$y+=.25;
$pdf->Text(1.0,$y,"Grade:");
$pdf->Text(2.0,$y,"C++");

$pdf->Output();
?>