i have to convert xml file into htm file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gustogusto
    New Member
    • May 2007
    • 1

    i have to convert xml file into htm file

    i have some xml files which i have to convert into htm form.
    is there any module or program which can help me out.......

    please help me it's very urgent!!
  • savanm
    New Member
    • Oct 2006
    • 85

    #2
    Hi...
    Wn Ever u post ur Question, Shoe ur code, Nd tel ur need Briefly with Example

    $path=$ARGV[0];
    opendir(DIR,$pa th);
    @xml=grep(/\.xml$/,readdir($path) );
    closedir($path) ;

    foreach $files (@xml)
    {

    submain($path." \/".$files);
    }
    sub submain
    {
    $xml=shift;
    $html=$xml;
    $html=~/\.xml/\.html/sg;

    Then finally write
    open(OUT,">$htm l);

    Comment

    Working...