我想从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;
?>

最佳答案

使用以下任意一个php脚本生成动态pdf文档
fpdf:http://www.fpdf.org/
TCPDF:http://www.tcpdf.org/

09-26 06:12