El problema es cuando utilizo extension eztable no puedo dar este formato por ejemplo $100.000, porque me retorna el valor natural de mysql o sea 100000 . A continuacion les dejo el codigo para q lo revisen:
Código PHP:
<?php
include ('class.ezpdf.php');
$pdf = new Cezpdf();
$pdf->selectFont('./fonts/Courier.afm');
$pdf->ezSetMargins(1,1,1.5,1.5);
$conexion = mysql_connect("localhost", "root", "");
mysql_select_db("xyz", $conexion);
$queEmp = "SELECT vun_cotiza,vut_cotiza FROM cotizacion_det WHERE id_cotizacion='2'";
$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));
}
$titles = array(
'vun_cotiza'=>'<b>NETO</b>',
'vut_cotiza'=>'<b>IVA</b>',
);
$options = array(
'shadeCol'=>array(0.9,0.9,0.9),
'xOrientation'=>'center',
'width'=>500
);
$pdf->ezText($txttit, 12);
$pdf->ezTable($data, $titles, '', $options);
$pdf->ezText("\n\n\n", 10);
$pdf->ezText("<b>Fecha:</b> ".date("d/m/Y"), 10);
$pdf->ezText("<b>Hora:</b> ".date("H:i:s")."\n\n", 10);
$pdf->stream();
?>
Saludos.....