我正在一个网站上工作,我想从html创建pdf.My代码可以工作,但文本框值不能在pdf上呈现。我正在使用mpdf库。我的代码如下。
include("../../../MPDF/mpdf.php");
$html=ob_get_contents();
ob_end_clean();
$mpdf=new mPDF('c','A4','','',32,25,27,25,16,13);
$mpdf->SetDisplayMode('fullwidth','continuous');
$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('../../../MPDF/examples/mpdfstyletables.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;