How can I set fill parameter to a certain row and col? Anyhelp? $fill is the variable I used, any ideas?
$row = 10;
$col = 10;
$w = 8;
$h = 8;
for ($r=1;$r<=$row;$r++)
{
for ($c=1;$c<=$col;$c++)
{
$pdf->Cell($w,$h, 'STRING' ,1,0,'C',$fill);
}
$pdf->Ln();
}