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>&nbsp;           </td>      eot; 

please guide me, how can resolve issue? tried using div-table structure not working, table structure disturbed in pdf output.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -