簡體   English   中英

如果我有數據丟失,為什么沒有顯示TCPDF結果?

[英]Why TCPDF result doesn't show if I have lof of data?

我已經用PHP開發了一個軟件,並使用TCPDF進行了報告。 它運行良好,但是在MySQL中導入大量數據后,PHP無法在瀏覽器超時之前生成報告。 我已經嘗試使用最新的Firefox和Chrome版本。

這是我的腳本:

     <?php

    require_once('tcpdf/config/lang/eng.php');
    require_once('tcpdf/tcpdf.php');

    // create new PDF documentation
     include "koneksi.php"; //file conection

     $bln=$_POST[BLN];  //for catch month
     $thn=$_POST[THN];  //for catch year
     $exp=$_POST[EXP];  //for catch expedition name


     if(empty($exp))
     {    
       $sql = "SELECT * FROM tb_exp_local where  bulan = '$bln'  AND tahun = '$thn'";
     }
     elseif($exp != "")
     {
       $sql = "SELECT * FROM tb_exp_local where  bulan = '$bln'  AND tahun = '$thn' AND nama_exp = '$exp'";
     }  
       $hasil = mysql_query($sql);


       $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);

       // set font
       $pdf->SetFont('times', '', 11);



    // landscape
       $pdf->addPage( 'L', 'LETTER' );

  //this for convert html to pdf with html function    

       $html = '
    <table border="1" cellspacing="3" cellpadding="4">
        <tr><td colspan="9" align="center"><h2>Form Pantauan Expedisi Export</h2></td></tr>
        <tr>
            <th align="center"><b>Tanggal</b></th>
            <th align="center"><b>Nama Expedisi</b></th>
            <th align="center"><b>Nama Distributor</b></th>
            <th align="center"><b>Kota Tujuan</b></th>
            <th align="center"><b>No Faktur</b></th>
            <th align="center"><b>Kondisi Armada Pengiriman</b></th>
            <th align="center"><b>Ketepatan Jumlah</b></th>
            <th align="center"><b>Ketepatan Waktu Kirim</b></th>
            <th align="center"><b>Keterangan</b></th>
        </tr></table>';

       while ($data = mysql_fetch_array($hasil))
       {

         $html .= '<table border="1"><tr><td align="center">'.$data['tgl'].'</td>
                       <td align="center">'.$data['nama_exp'].'</td>
                       <td align="center">'.$data['nama_dist'].'</td>
                       <td align="center">'.$data['kota_tujuan'].'</td>
                       <td align="center">'.$data['faktur'].'</td>
                       <td align="center">'.$data['konarmada'].'</td>
                       <td align="center">'.$data['tepatjml'].'</td>
                       <td align="center">'.$data['tepatwaktu'].'</td> 
                       <td align="center">'.$data['ket'].'</td>  
                       </tr></table> ';

       }

       $pdf->writeHTML($html, true, false, true, false, ''); //for generate




       $pdf->Output('FormPantauExpLocalAll', 'I'); // for generate pdf file

    ?>

服務器超時不取決於瀏覽器。 嘗試在循環中使用set_time_limit(60)

   while ($data = mysql_fetch_array($hasil))
   {
       set_time_limit(60);
       $html .= '(...)';
   }

另外,嘗試在(bulan,tahun,nama_exp)列上將INDEX添加到數據庫中,這將加快檢索過程。 另外,請注意,在此過程中您可能會用完內存(請檢查服務器上的PHP日志)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM