Print 2 records per page with Mpdf

Asked

Viewed 598 times

3

My problem is this: I need to print duplicates. I am using it to generate the Mpdf. When I need to emit only one blz, it works perfectly, but when I need to print more, it cuts, there is a part on the first page and end on the second.

On a sheet A4 There are two duplicates, so what would be the best way for me to solve this problem? When it arrives example: record 2 changes page, record 4 changes, so on.

1 answer

4


$i = 1; // Número de registros mostrados, começa com 1 para não dar erro de divisão por 0.

foreach ($registros as $registro) {
    echo $registro; // Exibe o registro.

    if ($i % 2 == 0) // Se o número de registros mostrados for divisível por 2, quebra página. (2, 4, 6, 8).
        $mpdf->AddPage(); // $mpdf deve ser a instância do seu MPDF.

    $i++; // Acrescenta um ao contador de registros.
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.