Home » questions » How to write XML on Perl?

How to write XML on Perl?

2006-08-04 05:52:30, Category: Programming & Design
Could anyone tell me where I can find information about writing XML (plus DTD and XSLT) on Perl? Andy.

Answers

  1. Novy

    On 2006-08-04 11:32:15


    as long as you print to standard out you can write xml... xml is merely a schematic for organizing data, so it all depends on how you format your output ... if you're using this for a server side script... don't waste ur time formating it in proper xml... just make it easy to parse in your client side script
  2. Steve S

    On 2006-08-04 06:08:14


    There's probably something at www.w3schools.com. That's where I get most of my web programming instruction. You could also "google" it.
  3. sterno73

    On 2006-08-04 23:03:56


    There are modules on CPAN that can make working with XML files much easier for you. Search for XML, and you'll find several, just pick the one that most closely matches your needs. You have been sparse with your requirements so it's hard to know what you're doing to be much more helpful than that.