I am so new to XML and so lost it is not funny. I take sample xml code and just open it in a browser and what I get back is the code on the web page not the document contents in the XML. I was thinking when you put the following...
<?xml version="1.0"?>
<oldjoke>
<burns>Say <quote>goodnight</quote>,
Gracie.</burns>
<allen><quote>Goodnight,
Gracie.</quote></allen>
<applause/>
</oldjoke>
You would get "Say
Goodnight Gracie
Goodnight Gracie"
in nice and neat format on the web page, but all I am getting is the code
<?xml version="1.0" ?>
- <oldjoke>
- <burns>
Say
<quote>goodnight</quote>
, Gracie.
</burns>
- <allen>
<quote>Goodnight, Gracie.</quote>
</allen>
<applause />
</oldjoke>
on the web page. What am I missing. Please help me get over this hurdle of learning.
<?xml version="1.0"?>
<oldjoke>
<burns>Say <quote>goodnight</quote>,
Gracie.</burns>
<allen><quote>Goodnight,
Gracie.</quote></allen>
<applause/>
</oldjoke>
You would get "Say
Goodnight Gracie
Goodnight Gracie"
in nice and neat format on the web page, but all I am getting is the code
<?xml version="1.0" ?>
- <oldjoke>
- <burns>
Say
<quote>goodnight</quote>
, Gracie.
</burns>
- <allen>
<quote>Goodnight, Gracie.</quote>
</allen>
<applause />
</oldjoke>
on the web page. What am I missing. Please help me get over this hurdle of learning.