1

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; 
?>
4

2 に答える 2

3

次のphpスクリプトのいずれかを使用して、動的PDFドキュメントを生成します

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

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

于 2012-12-06T09:36:36.880 に答える
1

DOMPDFを使用できます。詳細については、:をご覧ください。

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

于 2012-12-06T09:40:36.443 に答える