![Neurótico](http://static.forosdelweb.com/fdwtheme/images/smilies/scared.png)
Código PHP:
$cols = array('apellido_paterno'=>' APELLIDO PATERNO ',
'apellido_materno'=>' APELLIDO MATERNO ',
'nombre'=>' NOMBRES ',
'localidad'=>' LOCALIDAD ');
do {
$data[] = array('apellido_paterno'=>$row_rsEjecutor['apellido_paterno'],
'apellido_materno'=>$row_rsEjecutor['apellido_materno'],
'nombre'=>$row_rsEjecutor['nombre'],
'localidad'=>$row_rsEjecutor['localidad']);
} while ($row_rsEjecutor= mysql_fetch_array($rsEjecutor));
$pdf->ezTable($data,$cols,'REPORTE DE CULTURA CREDITICIA ',array('xPos'=>90,'fontSize'=>6,
'cols'=>array(
'apellido_paterno'=>array('justification'=>'left')
,'apellido_materno'=>array('justification'=>'left')
,'nombre'=>array('justification'=>'left')
,'localidad'=>array('justification'=>'center'))
));
//Aqui se coloca el header de la siguiente Tabla
$cols9 = array('ahorro'=>' LUGAR DE AHORRO ');
do {
$data9[] = array('ahorro'=>$row_rsListadoCatA['lugarahorro']);
} while ($row_rsListadoCatA= mysql_fetch_array($rsListadoCatA));
$pdf->ezTable($data9,$cols9,'Reporte de Ahorro ',array('fontSize'=>6,
'cols'=>array( 'ahorro'=>array('justification'=>'left'))
));
![de acuerdo](http://static.forosdelweb.com/fdwtheme/images/smilies/dedosarriba.png)