如何从MySQL表数据PHP创建PDF文档

时间:2012-12-06 09:32:06

标签: php mysql database pdf

我想从MySQL数据库中获取数据,并创建并创建数据的PDF文件。

这是我的代码,它保存了PDF文件,但无法打开。

<?php  
$host = 'localhost';
$user = 'root';
$pass = 'xxxx';
$db = 'db';

$link = mysql_connect($host, $user, $pass) or die("Can not connect." . mysql_error());
mysql_select_db($db) or die("Can not connect.");

$query = "SELECT childID,sex from child ";  

$result = mysql_query($query) or die('Error, query failed'); 

    while(mysql_fetch_array($result))  
    {  
        header("Content-length: $size"); 
        header("Content-type: $type"); 
        header("Content-Disposition: inline; filename=$username-$description.pdf"); 
    } 
    echo $content;
    mysql_close($link); 
    exit; 
?>

2 个答案:

答案 0 :(得分:3)

使用以下任何php脚本生成动态PDF文档

FPDF:http://www.fpdf.org/

TCPDF:http://www.tcpdf.org/

答案 1 :(得分:1)

您可以使用DOMPDF。有关详细信息,请查看:

http://code.google.com/p/dompdf/downloads/detail?name=dompdf_0-6-0_beta3.zip