문제

I am unsure if I am going about this correctly. Why using TCPDF when I attempt to post it returns an empty textfield?

$pdf->Cell(35, 5, 'Job Number ');
$pdf->TextField($_POST["jobnum"], 50, 5);
도움이 되었습니까?

해결책

You need to use the fourth $opt parameter see the TCPDF TextField reference and Acrobat API Reference

$pdf->TextField("jobnum", 50, 5, array(), array('v'=>$_POST["jobnum"] ) );

다른 팁

TCPDF requires the TextField() function to be like so: TextField("string", number, number)

so you need to make it like this:

$pdf->TextField("'".$_POST["jobnum"]."'", 50, 5);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top