Обсуждение: write to next-Page on PHP with Pdflib

Поиск
Список
Период
Сортировка

write to next-Page on PHP with Pdflib

От
"Devi Munandar"
Дата:
Hi All,
 
I have been making some report on PHP with Pdflib-5.0.1, so i have some problem. If I create single page report On PHP with pdflib function..so far so good, but to Write from First-Page to the next page..it doesn't work, there are still single page view on PDF-reader.? so how to create many page if i have 100 record on Postgresql and i want view in three page continous..? There are any idea...?
 
Devi Munandar
Puslit Informatika - LIPI
E-mail : devi@informatika.lipi.go.id

Re: write to next-Page on PHP with Pdflib

От
"scott.marlowe"
Дата:
On Wed, 27 Aug 2003, Devi Munandar wrote:

> Hi All,
>
> I have been making some report on PHP with Pdflib-5.0.1, so i have some
> problem. If I create single page report On PHP with pdflib function..so
> far so good, but to Write from First-Page to the next page..it doesn't
> work, there are still single page view on PDF-reader.? so how to create
> many page if i have 100 record on Postgresql and i want view in three
> page continous..? There are any idea...?

I use pdflib to print the company phonebook where I work, and it's 76
pages, so I'm not sure what's failing here.

Are you using something like this to go to the next page:

pdf_end_page($pdf);
pdf_begin_page($pdf, $max_x, $max_y);

???