【发布时间】:2013-08-14 05:20:22
【问题描述】:
我无法生成pdf下载,我的代码如下,谁能告诉我这段代码有什么问题。
include 'tcpdf.php';
$pdf = new TCPDF();
$pdf->AddPage('P', 'A4');
$html = '<html>
<head></head>
<body><table border="1">
<tr><th>name</th>
<th>company</th></tr>
<tr>
<td>hello</td>
<td>xx technologies</td>
</tr>
</table>
</body>
</html>';
$pdf->writeHTML($html, true, false, true, false, '');
$pdf->Output();
?>
【问题讨论】:
-
你有PHP报告的错误吗?