hi, i want to import an xml document and read it but when i do it returns it with the xsl file the xml imports so i the whole outcome where as i just want the xml without it loading the xsl, also i dont no how to parse it.
any help would be much appreciative thanks
<?php
/*
* (C) Copyright By 2k9lestaa4lyf@live.co.uk
* Coding For Fun (:
*/
class wow_armory {
var $Realm = "Nagrand";
var $User = false;
var $URL = "http://eu.wowarmory.com/character-sheet.xml?";
function wow_armory (){
}
function GetUSER ($username){
$this->User = $username;
$URL = $this->URL . "r={$this->Realm}&n={$this->User}";
$Xml = file_get_contents($URL);
return $Xml;
}
}
?>