将数据库表内容写入pdf

时间:2012-08-27 07:06:57

标签: php

我已经设法将db表中的内容写入pdf文件。

但表中的一个字段包含带有html标签的内容。这是“< p>这是语句< br>下一个语句< / p>”像这样。

我想用html格式将此内容写入pdf文件。我不想剥离标签。

内容应采用pdf格式的html格式。

例如,如果表格包含“< strong>”声明< / strong>“我想在pdf

中这样写

语句

这是否有任何PHP功能。

$pdf=new FPDF(); 
$pdf->AddPage(); //Create new PDF page 
$pdf->SetFont('Arial','B',10); //Set the base font & size 
$pdf->Ln();//Creates a new line, blank here 
$pdf->Cell(10,5,""); 
$pdf->Cell(10,5,""); 
$pdf->SetFont('Arial','B',12); 
$pdf->Ln(); 
$pdf->Cell(20,10,$title); 
$pdf->SetFont('Arial','',6); 
$pdf->Ln(); 
$pdf->Cell(20,11, $content); 
$pdf->Ln(); 
$pdf->Ln(); 
$pdf->Cell(1150,130,"Date:".date('d-m-y')); 
$separator = md5(time()); 
$file_name='Certificate'.$type_id.'.pdf'; 
// carriage return type (we use a PHP end of line constant) 
$eol = PHP_EOL; 
$pdf->Output($file_name,'D');

0 个答案:

没有答案