Hi,
This is my XML file. I want to retrieve information stored in a HTML Table in index.html page. How can i do it?
Thanks
<?xml version="1.0" encoding="UTF-8"?>
<memo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="memo.xsd">
<header>
<companyName>XML development LTD</companyName>
<to>myemail@yahoo.com</to>
<from>xml@yahoo.com</from>
<date>1979-11-07</date>
<reg>I don't know the reg</reg>
</header>
<body>
<message>
<parag>Hello, How are you today?</parag>
<sign></sign>
</message>
</body>
</memo>
I couldn't do more than this:
<xml id="mamoData" src="memo.xml"></xml>
<table datasrc="#memoData" border="1px">
<thead>
<th>COMPANY</th>
<th>TO</th>
<th>FROM</th>
<th>DATE</th>
<th>REG</th>
</thead>