<?php session_start(); if (isset($_SESSION["Usuario"])) { include_once 'print/fpdf.php'; require_once 'clases/clsProveedor.php'; $objProv = new Proveedores(); $fila = $objProv->get_Proveedores(); if (empty($fila)) { header('Location: ../proveedores'); } date_default_timezone_set("America/Lima"); class PDF extends FPDF { //Cabecera de página function Header() { $this->Image('images/www.png', 22, 8, 65, 38, 'png'); $this->SetFont('Arial', 'B', 12); //Movernos a la derecha $this->Cell(30); //Título $this->Cell(280, 40, iconv('utf-8', 'cp1252', 'SISTEMA DE COMPRA Y VENTA (JCL SOFT SOLUTION)'), 0, 1, 'C'); $this->SetFont('Arial', 'B', 9); $this->Cell(520, -10, "Fecha: " . date("d/m/Y"), 0, 1, 'C'); $this->Cell(520, 0, "Hora: " . date("h:i:s A"), 0, 1, 'C'); $this->SetFont('Arial', '', 9); $this->Cell(100, 15, iconv('utf-8', 'cp1252', 'Dirección: Av. Bolognesi #1527 - Chiclayo'), 0, 1, 'C'); $this->Cell(73, -5, iconv('utf-8', 'cp1252', 'Teléfono: (074) 234567'), 0, 0, 'C'); $this->SetFont('Arial', '', 9); $this->Cell(200, -5, iconv('utf-8', 'cp1252', 'Visítanos en: '), 0, 0, 'C');