|
In this example we will
create an simple XML file using notepad
(or any other text editor for that
matter) and then display this in our
ASP page .
First start your text
editor and enter the following , this
will be your XML file .
<?xml version="1.0"
encoding="ISO-8859-1"?>
<news>
<item>
<title>new domain name</title>
<link>http://www.beginnersphp.co.uk</link>
<description>we have a new domain
name for our PHP site</description>
</item>
</news>
Save this as testing.xml for the
purpose of this example .
|