Ver Mensaje Individual
  #13 (permalink)  
Antiguo 23/06/2008, 12:39
Avatar de cfranco
cfranco
 
Fecha de Ingreso: enero-2008
Ubicación: Barcelona - España
Mensajes: 182
Antigüedad: 16 años, 3 meses
Puntos: 6
Respuesta: Formatear texto fpdf

Código PHP:
$pdf=new PDF();

$pdf->AddPage();
$pdf->SetFont('Arial','',20);
$pdf->SetLeftMargin(45);
$pdf->SetFontSize(14);
$result=@mysql_query('select CODI, NOMB, LIBRE from vells',$conexion);  

while(
$row =@mysql_fetch_array($result)) 
{
 
$pdf->WriteHTML('<I>'.$row['CODI'].'</I>');  
}
$pdf->Output(); 
__________________
Salud y Éxitos
PFI Tube