Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Mikey
]> Newsgroups: php.general To: "Php-General" <[EMAIL PROTECTED]> Sent: Thursday, September 23, 2004 4:08 PM Subject: RE: [PHP] PDF from PHP generated HTML, possible? > > > Following the topic about generating PDF documents from within PHP has > > > prompted a

Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Matt M.
> Thanks for that John, I think the big issue will be how to 'cache' my HTML > pages should I want to proceed down this route. BTW from memory I think the > 'product' was htmldoc, or similar. use output buffering, save the html into some kind of temp file -- PHP General Mailing List (http://www.

Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Maciek Ruckgaber Bielecki
I strongly recomend to check the documentation for XSLT for this kind of transformations: http://w3.org/Style/XSL/ cheers. On Thu, Sep 23, 2004 at 03:44:01PM +0100, Graham Cossey wrote: > > Following the topic about generating PDF documents from within PHP has > prompted a thought... > > Is it

RE: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Graham Cossey
> > Following the topic about generating PDF documents from within PHP has > > prompted a thought... > > > > Is it possible to have PHP dynamically build an HTML page (from database > > data etc) and provide an option to output the page as PDF without going > > through all the database query routin

Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Matt M.
> Is it possible to have PHP dynamically build an HTML page (from database > data etc) and provide an option to output the page as PDF without going > through all the database query routine again? you could use output buffering. If they choose output as pdf, capture the html that was produced, ru

Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread John Holmes
From: "Graham Cossey" <[EMAIL PROTECTED]> Following the topic about generating PDF documents from within PHP has prompted a thought... Is it possible to have PHP dynamically build an HTML page (from database data etc) and provide an option to output the page as PDF without going through all the dat

Re: [PHP] PDF from PHP generated HTML, possible?

2004-09-23 Thread Maciek Ruckgaber Bielecki
i strongly recomend XSL for all this kind of conversion. From a single source you can obtain whatever you need building the adequate stylesheet. for more info http://w3.org/Style/XSL/ cheers On Thu, Sep 23, 2004 at 03:44:01PM +0100, Graham Cossey wrote: > > Following the topic about generating