Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6890149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:14:44+00:00 2026-05-27T06:14:44+00:00

I’m trying to create a PDF file with a table of data.. But when

  • 0

I’m trying to create a PDF file with a table of data.. But when a page break is met it jumps to a new page everytime a new multicell is added to the page at the break point level..!?

I have tried to do exactly the same with TCPDF, but still the same issue with a page break each time a new cell i added around the page break point level…

example:

http://www.online-økonomi.dk/_tst_fpdf.php

require_once '../class/download/fpdf/fpdf.php';

class File_PDF {
    private $pdf;

    private $col_product = 25;
    private $col_unit = 12;
    private $col_price = 20;
    private $col_count = 14;
    private $col_discount = 12;
    private $col_vat = 12;
    private $col_sum = 22;

    private $width = 200;
    private $line_height = 4.2;
    private $margin_top = 30;

    public function generate(){
        $this->pdf = new FPDF();
        $this->pdf->AddPage();
        $this->pdf->SetDisplayMode('real');
        $this->pdf->SetAutoPageBreak(true, 150);

        if($this->products){
            $i = 0;
            $this->color_light();
            foreach($this->products as $product){
                $this->add_product($product, $i % 2 ? true:false);
                $i++;
            }
        }

        $this->pdf->Output();
    }

    private function add_product($product, $fill){
        $this->txt();

        $x = $this->width;
        $y = $this->pdf->GetY();

        $this->cell_sum($this->col_sum, $x, $y, $product['sum'] / 100, 'R', $fill);
        $this->cell_vat($this->col_vat, $x, $y, $product['vat_percent'], 'R', $fill);
        $this->cell_discount($this->col_discount, $x, $y, $product['discount_percent'] / 100, 'R', $fill);
        $this->cell_count($this->col_count, $x, $y, $product['count'] / 100, 'R', $fill);
        $this->cell_price($this->col_price, $x, $y, $product['price'] / 100, 'R', $fill);
        $this->cell_unit($this->col_unit, $x, $y, $product['unit_name'], 'L', $fill);
        $this->cell_name(0, $x, $y, $product['name'], 'L', $fill);
        $this->cell_product($this->col_product, $x, $y, $product['product_id_'], 'L', $fill);
    }

    private function cell_sum($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_vat($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_discount($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_count($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_price($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_unit($width, &$x, $y, $str, $align, $fill=false){
        $this->cnstr_cell($width, $x, $y, $str, $align, $fill);
    }

    private function cell_name($width, &$x, $y, $str, $align, $fill=false){
        $this->pdf->SetXY($this->col_product + 10, $y);
        $this->pdf->MultiCell($x - $this->col_product - 10, $this->line_height, $str, 0, $align, $fill);
    }

    private function cell_product($width, &$x, $y, $str, $align, $fill=false){
        $this->pdf->SetXY(10, $y);
        $this->pdf->MultiCell($this->col_product, $this->line_height, $str, 0, $align, $fill);
    }

    private function cnstr_cell($width, &$x, $y, $str, $align='L', $fill=false){
        $x -= $width;
        $this->pdf->SetXY($x, $y);
        $this->pdf->MultiCell($width, $this->line_height, $str, 0, $align, $fill);
    }

    private function color_light(){
        $this->pdf->SetFillColor(200, 200, 200);
    }

    private function txt(){
        $this->pdf->SetFont('Arial', '', 8.5);
    }

    private function txt_marked(){
        $this->pdf->SetFont('Arial', 'B', 8.5);
    }

    private $products = array(
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            ),
        array(
            'product_id_' => 'ADS1550',
            'name' => 'name',
            'unit_name' => 'pcs',
            'price' => 182450000,
            'count' => 310000,
            'discount_percent' => 19900,
            'vat_percent' => 0,
            'sum' => 1587057200
            )
        );
}

$PDF = new File_PDF();
$PDF->generate();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:14:45+00:00Added an answer on May 27, 2026 at 6:14 am

    The problem is that in the Cell() method (which is called in MultiCell()) FPDF allways adds a new page if the the current Y position + the height of the new cell is greater than the allowed page height.

    The default page height seems to be 297, with SetAutoPageBreak() you substract 150 from it. So when Y + cell_height is graeter than 147 you allways get a new page when calling your cnstr_cell().

    To prevent this you need to call AddPage() by yourself. Add this check in your add_product() method:

    $x = $this->width;
    $y = $this->pdf->GetY();
    
    if (($y + $this->line_height) >= 147) {
        $this->pdf->AddPage();
        $y = 0; // should be your top margin
    }
    

    Btw. I also had to generate a dynamic PDF recently, I ended up using wkhtmltopdf, it was way more easy to use and customize than all the PHP libraries. I suggest to take a look at it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
I want use html5's new tag to play a wav file (currently only supported
I want to construct a data frame in an Rcpp function, but when I
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.