PDA

View Full Version : XML + HTML



Sammo
October 20th, 2004, 01:33 PM
How can I include an XML document in an HTML document,

so I have:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/css" href="note.css"?>
<note>
<to>Judy</to>
<from>Tom</from>
<comment> hello! </comment>
</note>


<html>
<body>
<!-- I want the xml data i have to be planted here! -->
</body>
</html>

DDD
October 20th, 2004, 01:44 PM
you will need to parse it with ASP or something.

Sammo
October 20th, 2004, 02:02 PM
ohohoh

could i use:


<?php $_GET[whatever.xml]; ?>

simplistik
October 20th, 2004, 02:08 PM
http://www.kirupa.com/web/index.htm

[m]
October 20th, 2004, 04:21 PM
http://www.w3schools.com/xml/xml_data_island.asp

So use
<xml> tags.