View Single Post
  #8 (permalink)  
Old 11-05-2008, 03:25 PM
Joe.Morgan's Avatar
Joe.Morgan Joe.Morgan is offline
The Super Chicken Mod
 
Join Date: Jan 2007
Location: West London
Gender: Male
Posts: 657
Default

Work in progress - it doesn't work tho

PHP Code:
<html>
<
body>

<
script type="text/javascript">
var 
xmlDoc=null;
if (
window.ActiveXObject)
{
// code for IE
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
else if (
document.implementation.createDocument)
{
// code for Mozilla, Firefox, Opera, etc.
xmlDoc=document.implementation.createDocument("","",null);
}
else
{
alert('Your browser cannot handle this script');
}
if (
xmlDoc!=null)
{
xmlDoc.async=false;
xmlDoc.load("oil.xml");

document.write("<table border='1'>");

var 
x=xmlDoc.getElementsByTagName("oil");
for (
i=0;i<x.length;i++)

document.write("<tr>");
document.write("<td>");
document.write(
x[i].getElementsByTagName("oil")[0].childNodes[0].nodeValue);
document.write("</td>");

document.write("<td>");
document.write(
x[i].getElementsByTagName("desc")[0].childNodes[0].nodeValue);
document.write("</td>");
document.write("</tr>");
}
document.write("</table>");
}
</script>

</body>
</html> 
__________________
Joe Morgan
.Be Kids - Live Strong
Reply With Quote