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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -