php - Connection timeout issue while genrating PDF using TCPDF -
if remove <td>
from below code generate pdf(using tcpdf) else gives error connection timeout
.
$curimagesrc = is_file("$image_dir/".$img['filename']) == true ? image_tag("../$image_dir/".$img['filename'], array('size'=>'200x150','align'=>'center','alt'=>$img['caption'])) : ''; print <<<eot <td width=25% $tdvalue_css> <div align="center"> $curimagesrc <br /> <u style="font-weight:bold">{$img['image_caption']}</u> </div> </td> eot;
please guide me, how can resolve issue? tried using div-table structure not working, table structure disturbed in pdf output.
Comments
Post a Comment