我正在尝试根据我拥有的数据库中的信息构建 PDF。当我这样做时,我收到 500 内部服务器错误。引发错误的代码是:
<?php
include('db.php');
$pdfArray = array();
$top = '<h1>Med One Equipment List</h1>
<table>
<thead>
<tr>
<td>Manufacturer</td>
<td>Model</td>
<td>Description</td>
</tr>
</thead>
<tbody>
';
array_push($pdfArray, $top);
while($rowAll = mssql_fetch_array($allResult)) {
$html = '
<tr>
<td>'.$rowAll["Manufacturer"].'</td>
<td>'.$rowAll["Model"].'</td>
<td>'.$rowAll["Make"].'</td>
<tr>';
array_push($pdfArray, $html);
}
$bottom = '</tbody>
</table>';
array_push($pdfArray, $bottom);
$table = implode(" ", $pdfArray);
$html = <<<EOF
{$table}
EOF;
?>
当我用 TCPDF 构建我的 PDF 时,我只是包含了这个文件。让我知道是否需要包含一些 TCPDF 代码。我一生都无法弄清楚为什么它不起作用。我的猜测是我错误地使用了 herdoc。