07/11/2015, 22:24
|
| Colaborador | | Fecha de Ingreso: septiembre-2009 Ubicación: mortuoria
Mensajes: 3.805
Antigüedad: 15 años, 2 meses Puntos: 214 | |
Respuesta: Incluir footer en una sola página con FPDF Saludo
Basta con modificar la clase fpdf, en la función AddPage,
para que no agregue el Footer en cada hoja.
Se encontrará algo así
Código PHP:
Ver originalif($this->page>0) { // Page footer $this->InFooter = true; $this->Footer(); $this->InFooter = false; // Close page $this->_endpage(); }
Debe quedar
Código PHP:
Ver originalif($this->page>0) { // Page footer //$this->InFooter = true; //$this->Footer(); //$this->InFooter = false; // Close page $this->_endpage(); }
__________________ "Si consigues ser algo más que un hombre, si te entregas a un ideal, si nadie puede detenerte, te conviertes en algo muy diferente."
Visita piggypon.com |