Respuesta: Crear reporte PDF Primero tienes que bajarte las librerias puedes hacerlo aqui: http://fpdf.org/ descargar, descomprimes y las guardas en tu carpeta raiz, ya posteriormente empiezas a hacer la programacion te dejo un ejemplo sencillo que yo utilizo lo adecuas a tis necesidades que tengas suerte:
<?php
require('fpdf.php');
class PDF extends FPDF
{
function header()
{
$this->SetFont('arial','B',15);
$this->Cell(50);
$this->Cell(80,10,'PAQUETERIA',0,0,'C');
$this->Ln(15);
$this->Cell(80,10,'_____________________________________ __________________________________________________ ______________________',0,0,'C');
$this->Ln(15);
}
function Footer()
{
$this->SetY(-10);
$this->SetFont('Arial','I',8);
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
}
$pdf=new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$conexion=mysql_connect("localhost","root","a") or die("problema con el servidor");
mysql_select_db("registro",$conexion) or die ("no selecciona la base de datos");
$consulta = mysql_query("SELECT * FROM oficios",$conexion);
while($resultado = mysql_fetch_array($consulta)){
$pdf->Cell(45,5,$resultado['numero'],1,0,'C');
$pdf->Cell(45,5,$resultado['fecha'],1,0,'C');
$pdf->Cell(45,5,$resultado['asunto'],1,0,'C');
$pdf->Cell(45,5,$resultado['seguimiento'],1,0,'C');
$pdf->Ln();
}
$pdf->Output();
?> |