在Cell(TCPDF)中添加文本字段

时间:2013-10-09 08:46:00

标签: php

我有一个基于用户输入的动态单元格,例如,如果用户想要3行,它将在PDF上显示3行。问题是我需要将该单元格填充。

$pdf->setFormDefaultProp(array('lineWidth'=>1, 'borderStyle'=>'solid', 'fillColor'=>array(255, 255, 200), 'strokeColor'=>array(255, 128, 128)));
for ($r=1;$r<=$row;$r++) {
for ($c=1;$c<=$col;$c++) {
$w = 180/2;
$h = 200/$row;
//$nemsung2=$_POST['subjects'];
//$pdf->Cell($w, $h, '' .$nemsung2  ,1,0, 'L');
$pdf->SetTextColor(0,0,0);
$sample = $pdf->TextField('firstname', 50, 5);
$pdf->Cell($w, $h,$sample, 1,0, 'C');

我的问题是如何动态地在单元格中添加文本字段? thx

0 个答案:

没有答案