Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/10/2006, 12:33
laulaurys
 
Fecha de Ingreso: junio-2005
Mensajes: 337
Antigüedad: 18 años, 11 meses
Puntos: 1
Problema con footer en FPDF

Hla estoy intentando imprimir el siguien footer:

function Footer()
{
global $dbi, $uname, $ed_id;

$h=4;

$sqla="SELECT ed_razon_social FROM edificio WHERE ed_id='1'";
$resulta=mysql_query($sqla,$dbi);

$this->SetY(-15);
$this->Cell(0,0,"",1,1);
$this->SetFont('Arial','',8);
while( $razona)=mysql_fetch_row($resulta))
{
$this->Cell(0,$h,$razona,0,0,'L');
}

Pero no me imprime nada...sugerencias? espero ayuda! gracias!!