RE: [PHP] Document generation from XML

2004-02-04 Thread Burhan Khalid
Russell Seymour wrote: Ray, I can create the XML of the document that I want to generate using the built in XML functions in PHP. THe thing I then want to do is be able to do is then use that XML to create documents in multiple formats, e.g. PDF. I think that I can use DocBook or

[PHP] [ERR] RE: [PHP] Document generation from XML

2004-02-04 Thread postmaster
Transmit Report: To: [EMAIL PROTECTED], 402 Local User Inbox Full ([EMAIL PROTECTED]) ---BeginMessage--- Russell Seymour wrote: Ray, I can create the XML of the document that I want to generate using the built in XML functions in PHP. THe thing I then want to do is be able to do is then

[PHP] Document generation from XML

2004-02-03 Thread Russell Seymour
Good evening list, I apologise profusely if after reading anyone thinks that is OT, but I relally need some pointers with a project I am working on. I have searched the Internet for information on XML document generation but there is too much information that I cannot decide which way to go.

Re: [PHP] Document generation from XML

2004-02-03 Thread Ray Hunter
On Tue, 2004-02-03 at 13:50, Russell Seymour wrote: In the beginning only one output format was required, HTML and then PDF was a requirement. More and more formats are now required by my users and rather than create a new output script for each different format I am thinking about outputting

Re: [PHP] Document generation from XML

2004-02-03 Thread Cesar Cordovez
I had exactly the same problem some time ago... My solution was very similiar of what you are trying to do, but my internal format is not XML but a group of arrays (faster processing). Then using some OOP I created the diferent output formats for my reports, therefore I have a microsoft

RE: [PHP] Document generation from XML

2004-02-03 Thread Williams, Olwen - SAL
: Wednesday, February 04, 2004 10:02 AM To: Russell Seymour Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Document generation from XML I had exactly the same problem some time ago... My solution was very similiar of what you are trying to do, but my internal format is not XML but a group of arrays (faster

Re: [PHP] Document generation from XML

2004-02-03 Thread Russell Seymour
To: [EMAIL PROTECTED] Sent: Tuesday, February 03, 2004 8:56 PM Subject: Re: [PHP] Document generation from XML On Tue, 2004-02-03 at 13:50, Russell Seymour wrote: In the beginning only one output format was required, HTML and then PDF was a requirement. More and more formats are now required