[snip]
My question is how to I know how/where the pages will break, and how can
I make the generation of the PDF files work automagically?  The first
page will always have a header set of information, and then the quote
following it, all other pages will just have the quoted items.
[/snip]
My experience has been that the FPDF class will automagicly go to the
next page. You can also play with the function SetAutoPageBreak (see
their online documentation for this function's details) for a bit more
customization. What I usually end up doing for a customized page break
is loop through the data setting a counter and then when the counter
gets to the point where it needs to break use the AddPage function.
Basicly it involves a lot of trial and error, but it should be able to
accomplish what you need. HTH!

Daniel

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to