Php bir ihraç pdf tüm sayfaların başlıklarını korumak için nasıl?

2 Cevap php

Hi I am exporting data from php page to pdf when the datas exceeed the page limit the header is not available for the consecutive pages function where i call the export to pdf is function changeDetails() { $bType = $this->input->post('textvalue');

                  if($bType == "pdf")
        {
            $this->load->library('table');
            $this->load->plugin('to_pdf');
            $data['countrytoword'] = $this->AddEditmodel1->export();
            $this->table->set_heading('Country','State','Town','Name');
            $out =  $this->table->generate($data['countrytoword']);
            $html = $this->load->view( 'newpdf',$data, true);
            pdf_create($html, $cur_date);
        }
    }

This is my view page from which i export data to pdf

Name Country State Town

İşte ben gibi sonuç alıyorum

page:1

Name country State Town
udaya india Tamilnadu kovai
chandru srilanka columbo aaaaa

page:2
vivek england gggkj gjgjkj

sayfa 2 i başlıkları adı, ülke, devlet ve şehir alamadım

2 Cevap

Eğer kullandığınız PDF kütüphanesi specifiy eğer yardımcı olabilir. I TCPDF sayfaları arasında tabloları Kapsayan destekler ve her sayfada tablo başlıklarını tekrar edeceğini biliyorum, bu yüzden bunu kontrol edebilirsiniz.

Check example 48 on the following page to see an example of table headers : http://www.tecnick.com/public/code/cp_dpage.php?aiocp_dp=tcpdf_examples

Bu eski, oldukça muğlak bir soru olduğunu biliyorum, ama ben yaptım durumda diğerleri bu sorun var:

Elbette kütüphaneye bağlıdır, ancak ve etiketleri başlık ve beden sarın eğer mPDF kullanarak, tablo başlıkları birden fazla sayfada tekrarlıyor olacaktır:

  <table>
   <thead>
    <tr>
     <th>Head 1</th>
     <th>Head 2</th>
     <th>Head 3</th>
    </tr>
   </thead>
   <tbody>
    <tr>
     <td>1</td>
     <td>2</td>
     <td>3</td>
    </tr>    
    etc...  
   </tbody>
  </table>