M
Mitch
Hi,
I'm looking for a way to take an xml file and automatically (no human
intervention) create an .html file. I see serveral ways that might
work, but none that exactly meet my needs. The .xml only contains
part of the data so formatting the .xml is not really what I want.
Given that I'm a newbie, excuse any syntax errors.
For example:
<xml>
<record>
<key>bob</key>
<data1>data11</data1>
<data2>data12</data2>
</record>
<record>
<key>key2</key>
<data1>data21</data1>
<data2>data22</data2>
</record>
</xml>
But the .html contains the rest of the page, formatting, additional
data and a key that indicates which data from the xml should be
used.
<html>
....
Some things to know about Bob is, <key=bob, value=data1> and <key=bob,
value=data2>.
which would somehow substitute the values data11 and data12 by keyed
lookup.
What are the best techniques to do this? CSS seems to be about
formatting as well as every other technique I've seen.
thx.
I'm looking for a way to take an xml file and automatically (no human
intervention) create an .html file. I see serveral ways that might
work, but none that exactly meet my needs. The .xml only contains
part of the data so formatting the .xml is not really what I want.
Given that I'm a newbie, excuse any syntax errors.
For example:
<xml>
<record>
<key>bob</key>
<data1>data11</data1>
<data2>data12</data2>
</record>
<record>
<key>key2</key>
<data1>data21</data1>
<data2>data22</data2>
</record>
</xml>
But the .html contains the rest of the page, formatting, additional
data and a key that indicates which data from the xml should be
used.
<html>
....
Some things to know about Bob is, <key=bob, value=data1> and <key=bob,
value=data2>.
which would somehow substitute the values data11 and data12 by keyed
lookup.
What are the best techniques to do this? CSS seems to be about
formatting as well as every other technique I've seen.
thx.