如何使用PHP编写PDF?

时间:2011-03-31 01:44:19

标签: mpdf

它不会在pdf中显示ite1值。为什么?你能不能纠正我的错误?

<?php


set_include_path($_SERVER['DOCUMENT_ROOT'] .'/mpdf/'); 

require('mpdf.php');

$n = 0;
$mpdf=new mPDF();

require_once('../../includes/common.php');
 $result = mysql_query("SELECT * from sgc where year = '2010'") or die(mysql_error());
$row=mysql_fetch_array($result);
$nric=$row['nric'];
$row=mysql_fetch_array($result);
$meta_ite=$row['meta_ite'];

$mpdf->WriteHTML('<p>Hello World</p>');

$html1 = '<table>
          <tr>
        <td width="388">Module Description</td>
        <td width="111"><div align="center">Grade</div></td>
        <td width="92"><div align="center">Earned</div></td>
        <td width="96"><div align="center">Authority</div></td>
        <td width="74"><div align="center">Series</div></td>
          </tr>';
        $unser = $meta_ite;
      $unser = unserialize($unser);
      $count = count($unser);
      for($j=0;$j<$count;$j++)
      {
          $ite1 = $unser[$i][0];
                //print_r ($unser[$i][0]."--".$unser[$i][1]."--".$unser[$i][2]);

$html1 .= '<tr><td width="388">'.$nric.'</td>
<td width="111">'.$count.'</td>
<td width="92"><div align="center">'.$ite1.'</div></td>
<td width="96">ITE</td>
<td width="74">2010</td>
  </tr>';

      }
 $html1 .= '</table>';

 $mpdf->WriteHTML($html1);
 $mpdf->Output('filename.pdf','D');
?>

1 个答案:

答案 0 :(得分:6)

首先,请添加 mpdf 文件

require_once('./mpdf/mpdf.php');

还打开调试功能以查看错误。

$mpdf->debug = true;

注意:确保您对服务器上的以下文件夹拥有完整的权限( 777 755 ):

  

/ ttfontdata /
  的/ tmp /
  / graph_cache /