I am trying to parse xml-ku (XML-version of the directory page) as follows:
$xml_string = file_get_contents($URL); $xml = simplexml_load_string($xml_string); The simplexml_load_string () function generated an error after one of the pages in the picture name got the & symbol (for example, blabla & blabla.png). How to get around this? I do not want to rewrite the entire parser. = (