Código PHP:
$queEmp = "SELECT qna_abono,format(importe,2) as importe,tnomina from abonos where folio='$x' and id_seccion='$y' and importe > '0' and qna_abono > '0'";
$resEmp = mysql_query($queEmp, $conexion) or die(mysql_error());
$totEmp = mysql_num_rows($resEmp);
$ixx = 0;
while($datatmp = mysql_fetch_assoc($resEmp)) {
$ixx = $ixx+1;
$data[] = array_merge($datatmp, array('num'=>$ixx));
}
$a=33;
$titles = array(
'num'=>'<b>N°</b>',
'qna_abono'=>'<b>Quincena</b>',
'importe'=>'<b>Importe</b>',
);
$options = array(
'shadeCol'=>array(0.9,0.9,0.9),
'xOrientation'=>'center',
);
Código PHP:
$pdf->ezTable($data, $titles, '', $options);
mugras gracias por su ayuda