Вопрос

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