dssu33392 2013-01-04 15:06
浏览 50
已采纳

使用mPDF从数据库调用行

I just try mPDF to make an output table pdf by database, but it still hard to do that.

<?php
$html = '

<center><h3>TITLE</h3></center>
<center>
<table border="1">
<tr>
    <th>COLUMN 1</th><th>COLUMN 2</th>
</tr>
<tr>
        <!--how to fetch this row from DB? -->
    <td>.$row[no1].</td><td>.$row[no2].</td>
</tr>
</table></center>

';
//==============================================================
//==============================================================
//==============================================================
include("../mpdf.php");
    include "conn.php";

    $res = mysql_query("select * from list");
    if (!$res)
        die("query error : ".mysql_error());
$mpdf=new mPDF('c','A4','','',32,25,27,25,16,13);
$mpdf->SetDisplayMode('fullpage');
$mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first level of a list
// LOAD a stylesheet
$stylesheet = file_get_contents('mpdfstyletables.css');
$mpdf->WriteHTML($stylesheet,1); // The parameter 1 tells that this is css/style only and no body/html/text
while($row = mysql_fetch_array($res))
    if (!$res)
        die("error fetch array : ".mysql_error());
$mpdf->WriteHTML($html,2);
$mpdf->Output('mpdf.pdf','I');
exit;
//==============================================================
//==============================================================
//==============================================================
?>

when I run this script, it can generate to PDF but the row didn't match like the database?

  • 写回答

1条回答 默认 最新

  • dssjxvbv918586 2013-01-04 15:41
    关注

    something like this :

    <?php
    
    //==============================================================
    //==============================================================
    //==============================================================
    include("../mpdf.php");
    include "conn.php";
    
    $res = mysql_query("select * from list");
    if (!$res)
        die("query error : ".mysql_error());
    $mpdf=new mPDF('c','A4','','',32,25,27,25,16,13);
    $mpdf->SetDisplayMode('fullpage');
    $mpdf->list_indent_first_level = 0; // 1 or 0 - whether to indent the first level of a list
    // LOAD a stylesheet
    $stylesheet = file_get_contents('mpdfstyletables.css');
    $mpdf->WriteHTML($stylesheet,1); // The parameter 1 tells that this is css/style only and no body/html/text
    $html = '
    
    <center><h3>TITLE</h3></center>
    <center>
    <table border="1">
    <tr>
    <th>COLUMN 1</th><th>COLUMN 2</th>
    </tr>
    <tr>';
    
    while($row = mysql_fetch_array($res)){
    $html .= '<td>'.$row['no1'].'</td><td>' . $row['no2']. '</td>';
    }
    $html .= '</tr>
    </table></center>
    ';
    $mpdf->WriteHTML($html,2); 
    $mpdf->Output('mpdf.pdf','I');
    exit;
    //==============================================================
    //==============================================================
    //==============================================================
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀