I am new at xml but have a little php/html/javascript knowledge.
My question: how do I get my xml data to automatically refresh? I believe it's somewhere in the xhttp commands, but am lost.
Any help would be appreciated.
<html>
<meta http-equiv="refresh" content="15">
<body>
<h1>Test</h1>
<b></b> <span id="audio"></span><br />
<b>Audio:</b> <span id="type"></span><br />
<b>Song:</b> <span id="title"></span><br />
<b>Artist:</b> <span id="artist"></span><br />
<b>Talent:</b> <span id="talent"></span><br />
<script type="text/javascript">
if (window.XMLHttpRequest)
{
xhttp=new XMLHttpRequest()
}
else
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP")
}
xhttp.open("GET","\KLAN.XML",false);
xhttp.send("");
xmlDoc=xhttp.responseXML;
document.getElementById("audio").innerHTML=
xmlDoc.getElementsByTagName("audio")[0].childNodes[0].nodeValue;
document.getElementById("type").innerHTML=
xmlDoc.getElementsByTagName("type")[0].childNodes[0].nodeValue;
document.getElementById("title").innerHTML=
xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue;
document.getElementById("artist").innerHTML=
xmlDoc.getElementsByTagName("artist")[0].childNodes[0].nodeValue;
document.getElementById("talent").innerHTML=
xmlDoc.getElementsByTagName("talent")[0].childNodes[0].nodeValue;
</script>
</body>
</html>