Как получить данные из xml в php и создать новую страницу или URL-адрес в php и показать полный контент из xml?

<?xml version="1.0" encoding="utf-8"?> <archive> <news category="Lorem"> <headline>Lorem Ipsum</headline> <date>January 25th, 2016</date> <sortNews>What is Lorem Ipsum?</sortNews> <fullNews><b>Lorem Ipsum</b> is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</fullNews> </news> </archive> 

Вышеупомянутый файл XML. Предположим, что имя файла – archive.xml.

  <?php $xmls=simplexml_load_file("newsArchive.xml") or die("Error: Cannot create object"); foreach ($xmls as $xml) { echo "<h4>" . $xml->headline->asXml() . "</h4>"; echo "<h5>" . $xml->date->asXml() . "</h5>"; echo "<p>" . $xml->sortNews->asXml() . "</p>"; } ?> 

Теперь я хочу показать ссылку, как читать больше после sortnews и открыть новый php-файл или запросить сопутствующие сообщения, чтобы это выглядело так, и показать полный текст новостей с другими сведениями.

Можно ли это сделать? Или как я могу это сделать? Также возможно, что в XML-файле есть несколько новостей.