Código PHP:
<?php
require('fpdf.php');
include ('PPUnefa.php');
class PDF extends FPDF
{
//Cabecera de página
function Header()
{
//Logo
$this->Image('logo.png',13,10,20);
//Fuente
$this->SetFont('times','',12);
//Encabezado
$this->Cell(195,11 , $str = "Resultado",0,1,'C');
function TablaDtos($header)
{
$this->SetFillColor(211,211,211);
$this->SetFont('times','B',11);
$this->Ln(5);
$result=mysql_query("SELECT * FROM alumno WHERE cedula = '$cedula' " )or die(mysql_error());
while($resultado = mysql_fetch_array($result)){
$this->Cell(75,10 , 'Nombres:',1);
$this->Cell(75,10 , 'Apellidos:',1);
$this->Cell(40,10 , 'Cedula de Identidad:',1);
$this->Ln();
$this->Cell(75,8 , $resultado['Nombre'],1);
$this->Cell(75,8 , $resultado['Apellido'],1);
$this->Cell(40,8 ,$resultado['Cedula'],1);
}
}
function Footer()
{
$this->SetY(-15);
$this->SetFont('times','B',10);
$this->Cell(0,10,'Pagina'.$this->PageNo().'/{nb}',0,0,'C');
}
}
$pdf=new PDF();
$header=array('');
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetY(65);
$pdf->TablaDtos($header);
$pdf->Output();
?>